結果

問題 No.1058 素敵な数
ユーザー wgrapewgrape
提出日時 2024-11-11 11:23:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-11-11 11:23:13
合計ジャッジ時間 2,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,696 KB
testcase_01 AC 48 ms
61,420 KB
testcase_02 AC 48 ms
61,952 KB
testcase_03 AC 51 ms
62,208 KB
testcase_04 AC 49 ms
61,568 KB
testcase_05 AC 50 ms
61,568 KB
testcase_06 AC 48 ms
61,696 KB
testcase_07 AC 47 ms
61,440 KB
testcase_08 AC 48 ms
61,824 KB
testcase_09 AC 57 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 10 ** 5 + 1000
F = [True] * M
F[0] = False
F[1] = False
for i in range(M):
    if not F[i]:
        continue
    for j in range(i * i, M, i):
        F[j] = False
        
facts = []
for i in range(10 ** 5 + 1, M):
    if F[i]:
        facts.append(i)
        
N = int(input())
S = {1}
for i in range(len(facts)):
    for j in range(i, len(facts)):
        S.add(facts[i] * facts[j])
        
print(sorted(list(S))[N - 1])
0