結果

問題 No.1058 素敵な数
ユーザー rythem00359rythem00359
提出日時 2020-08-26 13:50:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-04-24 22:01:57
合計ジャッジ時間 980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,392 KB
testcase_01 AC 29 ms
11,264 KB
testcase_02 AC 28 ms
11,264 KB
testcase_03 AC 30 ms
11,136 KB
testcase_04 AC 30 ms
11,264 KB
testcase_05 AC 30 ms
11,264 KB
testcase_06 AC 33 ms
11,136 KB
testcase_07 AC 29 ms
11,264 KB
testcase_08 AC 37 ms
11,264 KB
testcase_09 AC 30 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
def miller(x):
    if x==2:return True
    elif x>2 and x&1==0:return False
    s,t=0,x-1
    while t&1==0:
        s,t=s+1,t>>1
    a=random.randint(1,x-1)
    if pow(a,t,x)==1:return True
    for i in range(0,s):
        if pow(a,pow(2,i)*t,x)==x-1:return True
    return False
n=int(input())
if n==1:print(1)
else:
    a=10**5+1
    p=[]
    ans=[]
    m=6
    while len(p)<m:
        if miller(a):p.append(a)
        a+=2
    for i in range(m):
        for j in range(i,m):
            ans.append(p[i]*p[j])
    ans.sort()
    print(ans[n-2])
0