結果

問題 No.713 素数の和
ユーザー keidenkeiden
提出日時 2024-09-27 19:17:54
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-09-27 19:17:58
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
27,776 KB
testcase_01 AC 121 ms
27,904 KB
testcase_02 AC 118 ms
27,648 KB
testcase_03 AC 117 ms
27,520 KB
testcase_04 AC 117 ms
27,776 KB
testcase_05 AC 116 ms
27,648 KB
testcase_06 AC 115 ms
27,648 KB
testcase_07 AC 116 ms
27,648 KB
testcase_08 AC 115 ms
27,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(use scheme.list)
(use math.prime)

(define yuki713
  (let* ((n (read)))
        (print (apply + (take-while (lambda (x) (<= x n)) *primes*)))))
0