小的只會用 CPP 寫出建表和不建表來拿 AC (0.5s 和 1.6s),有一點概念但解題報告#20495: 解法大全的一些數學理論實在理解不能。
有沒有大神能提點一下 Python 能拿 AC 的關鍵點在哪?
目前試過的方法
(6k +- 1)
網路上有質數判定法
https://chiendavid.blogspot.com/2020/03/zerojudge-a007.html
我放部落格很久了,可惜都 google 不到。
網路上有質數判定法
https://chiendavid.blogspot.com/2020/03/zerojudge-a007.html
我放部落格很久了,可惜都 google 不到。
看起來是米勒 - 拉賓算法 (Miller-Rabin Primilarity Test) 的實作?
我先試著理解看看,十分感謝
http://web.ntnu.edu.tw/~algo/Prime.html
大致是拿了 AC,但這段沒能搞懂,數學理論好難 Orz
def isPrime(n): # 略 for sk in sprp: # 略 for i in range(t-1): x = pow(x, 2, n) if (x == 1): return 0 if (x == n-1): break if (x != n-1): return 0 return 1
需要理解這篇
http://web.ntnu.edu.tw/~algo/Prime.html
提到的 Strong Probable-prime Base,感謝提供範例和資料