結果

問題 No.1058 素敵な数
ユーザー flippergoflippergo
提出日時 2021-01-04 23:22:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 1,678 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 69,040 KB
最終ジャッジ日時 2024-10-15 08:04:11
合計ジャッジ時間 2,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
68,772 KB
testcase_01 AC 88 ms
68,028 KB
testcase_02 AC 92 ms
68,088 KB
testcase_03 AC 89 ms
68,796 KB
testcase_04 AC 90 ms
68,060 KB
testcase_05 AC 89 ms
67,560 KB
testcase_06 AC 91 ms
68,528 KB
testcase_07 AC 90 ms
68,408 KB
testcase_08 WA -
testcase_09 AC 89 ms
67,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = [i for i in range(10**6)]
for i in range(2,1001):
    for j in range(i**2,10**6,i):
        P[j]=P[i]
Q = []
for i in range(10**5,10**6):
    if P[i]==i:
        Q.append(i)
        if len(Q)==5:break
A = []
for i in range(4):
    for j in range(i,5):
        A.append(Q[i]*Q[j])
A = sorted(A)
A.insert(0,1)
N = int(input())
print(A[N-1])
0