結果

問題 No.289 数字を全て足そう
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-08-19 22:54:23
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 419 ms / 1,000 ms
コード長 87 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 135,692 KB
実行使用メモリ 143,848 KB
最終ジャッジ日時 2024-05-03 13:18:39
合計ジャッジ時間 10,623 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
136,732 KB
testcase_01 AC 339 ms
136,612 KB
testcase_02 AC 338 ms
136,800 KB
testcase_03 AC 357 ms
136,508 KB
testcase_04 AC 346 ms
136,860 KB
testcase_05 AC 374 ms
140,244 KB
testcase_06 AC 368 ms
140,160 KB
testcase_07 AC 400 ms
142,580 KB
testcase_08 AC 398 ms
142,612 KB
testcase_09 AC 375 ms
140,604 KB
testcase_10 AC 381 ms
140,228 KB
testcase_11 AC 402 ms
141,812 KB
testcase_12 AC 419 ms
142,052 KB
testcase_13 AC 392 ms
141,628 KB
testcase_14 AC 407 ms
143,848 KB
testcase_15 AC 396 ms
141,940 KB
testcase_16 AC 385 ms
140,612 KB
testcase_17 AC 398 ms
141,680 KB
testcase_18 AC 401 ms
143,312 KB
testcase_19 AC 404 ms
141,524 KB
testcase_20 AC 398 ms
141,940 KB
testcase_21 AC 355 ms
137,576 KB
testcase_22 AC 415 ms
142,836 KB
testcase_23 AC 406 ms
143,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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