結果

問題 No.3079 アルベド
ユーザー lloyzlloyz
提出日時 2021-11-18 22:01:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 81,748 KB
実行使用メモリ 77,452 KB
最終ジャッジ日時 2024-06-08 12:16:26
合計ジャッジ時間 3,086 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
77,340 KB
testcase_01 AC 244 ms
77,280 KB
testcase_02 AC 183 ms
77,348 KB
testcase_03 AC 151 ms
77,452 KB
testcase_04 AC 209 ms
77,044 KB
testcase_05 AC 178 ms
77,080 KB
testcase_06 AC 198 ms
77,224 KB
testcase_07 AC 107 ms
77,248 KB
testcase_08 AC 116 ms
77,236 KB
testcase_09 AC 171 ms
77,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Primes = [1 for _ in range(10**5 + 1)]
Primes[0] = Primes[1] = 0
for i in range(2, 10**5 + 1):
    if Primes[i] == 0:
        continue
    for j in range(2 * i, 10**5 + 1, i):
        Primes[j] = 0
for i in range(10**5):
    Primes[i + 1] += Primes[i]

t = int(input())
for _ in range(t):
    print(Primes[int(input())])
0