結果
問題 | No.1058 素敵な数 |
ユーザー | uni_python |
提出日時 | 2020-06-18 23:38:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 58 ms / 2,000 ms |
コード長 | 925 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,204 KB |
実行使用メモリ | 65,664 KB |
最終ジャッジ日時 | 2024-06-30 05:51:47 |
合計ジャッジ時間 | 1,222 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
65,280 KB |
testcase_01 | AC | 58 ms
64,768 KB |
testcase_02 | AC | 57 ms
65,664 KB |
testcase_03 | AC | 58 ms
65,024 KB |
testcase_04 | AC | 54 ms
65,280 KB |
testcase_05 | AC | 54 ms
64,768 KB |
testcase_06 | AC | 55 ms
65,024 KB |
testcase_07 | AC | 54 ms
64,896 KB |
testcase_08 | AC | 56 ms
64,640 KB |
testcase_09 | AC | 53 ms
64,896 KB |
ソースコード
import sys input=sys.stdin.readline def I(): return int(input()) def MI(): return map(int, input().split()) def LI(): return list(map(int, input().split())) mod=10**9+7 def main(): #nまでの素数を列挙(n loglogn) N=I() n = 3*(10**5) #is_prime[i]にはi-1が素数か否かを示すboolが入る,[0]に1の素数判定がある. is_prime = [True]*(n+1) is_prime[0] = False for i in range(2, n+1): if is_prime[i-1]: j = 2 * i while j <= n: is_prime[j-1] = False j += i table=[] for i in range(10**5,n): if is_prime[i]: table.append(i+1) if len(table)>=100: break ans=[1] M=len(table) for i in range(M): for j in range(M): ans.append(table[i]*table[j]) ans=list(set(ans)) ans.sort() print(ans[N-1]) main()