結果

問題 No.713 素数の和
ユーザー %20%20
提出日時 2018-07-16 09:44:36
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 31 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 119,992 KB
実行使用メモリ 133,988 KB
最終ジャッジ日時 2023-08-16 05:08:26
合計ジャッジ時間 5,569 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 436 ms
132,064 KB
testcase_01 AC 393 ms
133,796 KB
testcase_02 AC 391 ms
133,504 KB
testcase_03 AC 405 ms
133,988 KB
testcase_04 AC 400 ms
133,812 KB
testcase_05 AC 397 ms
133,832 KB
testcase_06 AC 404 ms
133,700 KB
testcase_07 AC 393 ms
131,672 KB
testcase_08 AC 396 ms
133,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

say sum grep {.is-prime},1..get
0