結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー keidenkeiden
提出日時 2024-09-12 21:13:41
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 646 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2024-09-12 21:13:50
合計ジャッジ時間 6,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
28,288 KB
testcase_01 AC 90 ms
28,288 KB
testcase_02 AC 90 ms
28,288 KB
testcase_03 AC 89 ms
28,416 KB
testcase_04 AC 119 ms
28,288 KB
testcase_05 AC 89 ms
28,416 KB
testcase_06 AC 90 ms
28,416 KB
testcase_07 AC 101 ms
30,592 KB
testcase_08 AC 175 ms
37,888 KB
testcase_09 AC 222 ms
46,648 KB
testcase_10 AC 515 ms
95,104 KB
testcase_11 AC 492 ms
96,000 KB
testcase_12 AC 495 ms
96,640 KB
testcase_13 AC 521 ms
99,072 KB
testcase_14 AC 514 ms
101,376 KB
testcase_15 AC 646 ms
103,572 KB
testcase_16 AC 627 ms
114,816 KB
testcase_17 AC 94 ms
28,288 KB
testcase_18 AC 92 ms
28,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(import
  (scheme base)
  (scheme read)
  (scheme write)
  (srfi 152)
)

(read-line)
(display (apply + (map string->number (string-split (read-line) " "))))
(newline)
0