結果
問題 | No.713 素数の和 |
ユーザー |
![]() |
提出日時 | 2018-10-06 09:39:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 129 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-12 13:43:33 |
合計ジャッジ時間 | 942 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 3 WA * 3 |
ソースコード
n=int(input())LIST = range(2,n+1)for i in range(2,int(n**0.5)):LIST=[x for x in LIST if (x==i or x%i!=0)]print(sum(LIST))