結果

問題 No.289 数字を全て足そう
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-08-19 22:54:23
言語 Raku
(rakudo v2024.12)
結果
AC  
実行時間 422 ms / 1,000 ms
コード長 87 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 133,648 KB
実行使用メモリ 144,252 KB
最終ジャッジ日時 2024-11-24 13:27:40
合計ジャッジ時間 10,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
137,328 KB
testcase_01 AC 342 ms
136,804 KB
testcase_02 AC 344 ms
136,476 KB
testcase_03 AC 335 ms
136,672 KB
testcase_04 AC 341 ms
136,860 KB
testcase_05 AC 373 ms
140,112 KB
testcase_06 AC 372 ms
140,056 KB
testcase_07 AC 413 ms
142,544 KB
testcase_08 AC 406 ms
142,320 KB
testcase_09 AC 380 ms
140,144 KB
testcase_10 AC 391 ms
140,500 KB
testcase_11 AC 395 ms
141,780 KB
testcase_12 AC 415 ms
143,192 KB
testcase_13 AC 395 ms
141,736 KB
testcase_14 AC 422 ms
144,252 KB
testcase_15 AC 403 ms
142,468 KB
testcase_16 AC 391 ms
140,840 KB
testcase_17 AC 399 ms
141,904 KB
testcase_18 AC 414 ms
143,640 KB
testcase_19 AC 403 ms
141,648 KB
testcase_20 AC 395 ms
142,192 KB
testcase_21 AC 344 ms
136,800 KB
testcase_22 AC 412 ms
143,060 KB
testcase_23 AC 403 ms
143,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

get().split("")
     .reduce({$^sum + ($^val ~~ /\d/ ?? Int($^val) !! 0)})
     .say();
0