結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
68,236 KB
testcase_01 AC 87 ms
67,988 KB
testcase_02 AC 85 ms
68,240 KB
testcase_03 AC 90 ms
68,000 KB
testcase_04 AC 86 ms
67,284 KB
testcase_05 AC 84 ms
68,520 KB
testcase_06 AC 87 ms
67,720 KB
testcase_07 AC 87 ms
68,632 KB
testcase_08 AC 86 ms
67,348 KB
testcase_09 AC 92 ms
68,084 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)==6:break
A = []
for i in range(5):
    for j in range(i,6):
        A.append(Q[i]*Q[j])
A = sorted(A)
A.insert(0,1)
N = int(input())
print(A[N-1])
0