結果
| 問題 | No.713 素数の和 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-09-27 19:11:23 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 103 bytes |
| コンパイル時間 | 147 ms |
| コンパイル使用メモリ | 6,944 KB |
| 実行使用メモリ | 30,484 KB |
| 最終ジャッジ日時 | 2024-09-27 19:11:33 |
| 合計ジャッジ時間 | 2,429 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | AC * 1 WA * 1 RE * 4 |
ソースコード
(use gauche.lazy) (use math.prime) (print (apply + (ltake-while (lambda (x) (< x (read))) *primes*)))