結果
問題 | No.1058 素敵な数 |
ユーザー | uni_python |
提出日時 | 2020-06-18 23:34:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 901 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 61,184 KB |
最終ジャッジ日時 | 2024-06-30 05:51:46 |
合計ジャッジ時間 | 1,101 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
60,672 KB |
testcase_01 | AC | 46 ms
61,184 KB |
testcase_02 | AC | 48 ms
60,672 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
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 = 2*(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)>=10: break ans=[1] M=len(table) for i in range(M): for j in range(M): ans.append(table[i]*table[j]) ans.sort() print(ans[N-1]) main()