結果

問題 No.3079 アルベド
ユーザー 👑 rin204rin204
提出日時 2021-08-29 16:44:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,136 KB
最終ジャッジ日時 2024-11-22 06:41:02
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
78,136 KB
testcase_01 AC 256 ms
77,568 KB
testcase_02 AC 187 ms
77,956 KB
testcase_03 AC 155 ms
77,712 KB
testcase_04 AC 215 ms
77,864 KB
testcase_05 AC 179 ms
77,908 KB
testcase_06 AC 205 ms
77,908 KB
testcase_07 AC 104 ms
77,708 KB
testcase_08 AC 116 ms
77,564 KB
testcase_09 AC 173 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

max_ = 10 ** 5
isprime = [True] * (max_ + 1)
isprime[0] = isprime[1] = False
for i in range(2, int(max_ ** 0.5 + 1)):
    if not isprime[i]:
        continue
    for j in range(i * i, max_ + 1, i):
        isprime[j] = False
        
ans = [0] * (max_ + 1)
for i in range(1, max_ + 1):
    ans[i] = ans[i - 1] + isprime[i]
    
for _ in range(int(input())):
    print(ans[int(input())])
0