結果

問題 No.3079 アルベド
ユーザー 👑 NachiaNachia
提出日時 2021-04-23 20:28:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-07-04 07:17:45
合計ジャッジ時間 3,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
77,184 KB
testcase_01 AC 252 ms
77,128 KB
testcase_02 AC 197 ms
77,056 KB
testcase_03 AC 151 ms
77,184 KB
testcase_04 AC 216 ms
77,056 KB
testcase_05 AC 178 ms
76,940 KB
testcase_06 AC 201 ms
77,056 KB
testcase_07 AC 101 ms
76,608 KB
testcase_08 AC 119 ms
76,672 KB
testcase_09 AC 168 ms
76,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = [1]*100001
P[0] = 0
P[1] = 0
for i in range(350):
    if P[i] == 1:
        for j in range(i*i,100001,i):
            P[j] = 0
for i in range(100000):
    P[i+1] += P[i]

T = int(input())
for t in range(T):
    N = int(input())
    print(P[N])
0