結果

問題 No.1058 素敵な数
ユーザー lloyzlloyz
提出日時 2022-03-02 00:17:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 500 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-07-08 07:32:37
合計ジャッジ時間 1,621 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 80 ms
71,680 KB
testcase_02 AC 80 ms
71,424 KB
testcase_03 AC 82 ms
71,424 KB
testcase_04 AC 81 ms
71,296 KB
testcase_05 AC 85 ms
71,552 KB
testcase_06 AC 83 ms
71,296 KB
testcase_07 AC 81 ms
71,296 KB
testcase_08 WA -
testcase_09 AC 82 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

if n == 1:
    print(1)
    exit()

n -= 2
IsPrime = [True for _ in range(10**6 + 1)]
IsPrime[0] = IsPrime[1] = False
for i in range(2, 10**6 + 1):
    if IsPrime[i]:
        for j in range(i + i, 10**6 + 1, i):
            IsPrime[j] = False

P = []
for i in range(10**5 + 1, 10**6 + 1):
    if IsPrime[i]:
        P.append(i)
        if len(P) == 5:
            break

ANS = []
for i in range(5):
    for j in range(i, 5):
        ANS.append(P[i] * P[j])
ANS.sort()
print(ANS[n])
0