結果

問題 No.3079 アルベド
ユーザー etale.K3etale.K3
提出日時 2021-10-25 23:10:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 846 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,452 KB
最終ジャッジ日時 2024-10-03 22:06:01
合計ジャッジ時間 5,210 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
15,452 KB
testcase_01 AC 560 ms
15,136 KB
testcase_02 AC 390 ms
15,132 KB
testcase_03 AC 293 ms
15,264 KB
testcase_04 AC 458 ms
15,268 KB
testcase_05 AC 367 ms
15,136 KB
testcase_06 AC 425 ms
15,260 KB
testcase_07 AC 157 ms
15,388 KB
testcase_08 AC 186 ms
15,260 KB
testcase_09 AC 355 ms
15,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = [0] + [0] + [1]*(10**5+1)

for i in range(10**5+1):
    if A[i] == 1:
        for j in range(i+i,10**5+3,i):
            A[j] = 0

S = [0]*(10**5+3)

for i in range(1,10**5+1):
    S[i] = S[i-1] + A[i]


T = int(input())
for _ in range(T):
    print(S[int(input())])
0