結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー MOD9cXWdOsRxvPyMOD9cXWdOsRxvPy
提出日時 2022-09-18 15:41:04
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 5,296 KB
実行使用メモリ 102,684 KB
最終ジャッジ日時 2023-08-23 18:09:44
合計ジャッジ時間 4,975 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
11,752 KB
testcase_01 AC 18 ms
11,668 KB
testcase_02 AC 17 ms
11,640 KB
testcase_03 AC 17 ms
11,724 KB
testcase_04 AC 17 ms
11,688 KB
testcase_05 AC 17 ms
11,652 KB
testcase_06 AC 18 ms
11,796 KB
testcase_07 AC 37 ms
14,040 KB
testcase_08 AC 88 ms
22,232 KB
testcase_09 AC 148 ms
28,612 KB
testcase_10 AC 426 ms
81,172 KB
testcase_11 AC 430 ms
84,656 KB
testcase_12 AC 436 ms
85,864 KB
testcase_13 AC 434 ms
89,496 KB
testcase_14 AC 410 ms
90,868 KB
testcase_15 AC 415 ms
91,228 KB
testcase_16 AC 523 ms
102,684 KB
testcase_17 AC 17 ms
11,676 KB
testcase_18 AC 17 ms
11,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(display
 (apply +
	(map (^ (x) (string->number x))
	     (string-split (begin
			     (read-line)
			     (read-line)) " "))))


0