結果

問題 No.289 数字を全て足そう
ユーザー Yuzu MashiroYuzu Mashiro
提出日時 2021-04-03 15:32:50
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 136 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 5,384 KB
実行使用メモリ 14,704 KB
最終ジャッジ日時 2023-08-26 06:22:37
合計ジャッジ時間 2,269 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
12,312 KB
testcase_01 AC 23 ms
12,220 KB
testcase_02 AC 22 ms
12,404 KB
testcase_03 AC 23 ms
12,312 KB
testcase_04 AC 23 ms
12,228 KB
testcase_05 AC 23 ms
12,384 KB
testcase_06 AC 23 ms
12,348 KB
testcase_07 AC 25 ms
12,764 KB
testcase_08 AC 25 ms
12,680 KB
testcase_09 AC 24 ms
12,368 KB
testcase_10 AC 23 ms
12,432 KB
testcase_11 AC 25 ms
14,704 KB
testcase_12 AC 24 ms
12,808 KB
testcase_13 AC 23 ms
12,552 KB
testcase_14 AC 26 ms
12,808 KB
testcase_15 AC 24 ms
12,680 KB
testcase_16 AC 24 ms
12,800 KB
testcase_17 AC 25 ms
12,752 KB
testcase_18 AC 25 ms
12,836 KB
testcase_19 AC 25 ms
12,836 KB
testcase_20 AC 25 ms
12,792 KB
testcase_21 AC 23 ms
12,336 KB
testcase_22 AC 25 ms
12,800 KB
testcase_23 AC 27 ms
13,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(print ((.$ (fold$ + 0)
            (filter$ boolean)
            (map$ digit->integer)
            string->list)
        (read-line)))
0