結果

問題 No.713 素数の和
ユーザー lllllll88938494lllllll88938494
提出日時 2023-07-11 12:40:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 58,996 KB
最終ジャッジ日時 2024-09-13 03:14:50
合計ジャッジ時間 1,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,492 KB
testcase_01 AC 36 ms
53,308 KB
testcase_02 AC 38 ms
52,848 KB
testcase_03 AC 40 ms
57,800 KB
testcase_04 AC 41 ms
58,996 KB
testcase_05 AC 40 ms
58,204 KB
testcase_06 AC 36 ms
53,268 KB
testcase_07 AC 37 ms
53,288 KB
testcase_08 AC 40 ms
58,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n= int(input())
ans = [0] * (n+1)

for i in range(2,n+1):
	t = i+i
	while t <= n:
		ans[t] = 1 
		t += i
		
a = 0
for i in range(2,n+1):
	if ans[i] == 0:
		a+=i
print(a)
0