結果

問題 No.32 貯金箱の憂鬱
ユーザー neko_the_shadowneko_the_shadow
提出日時 2016-08-19 22:23:34
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 407 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 2,380 ms
コンパイル使用メモリ 145,648 KB
実行使用メモリ 146,220 KB
最終ジャッジ日時 2024-07-23 02:23:07
合計ジャッジ時間 8,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 394 ms
145,956 KB
testcase_01 AC 405 ms
145,840 KB
testcase_02 AC 396 ms
146,220 KB
testcase_03 AC 399 ms
145,824 KB
testcase_04 AC 399 ms
145,964 KB
testcase_05 AC 407 ms
145,840 KB
testcase_06 AC 399 ms
145,828 KB
testcase_07 AC 396 ms
146,092 KB
testcase_08 AC 395 ms
145,824 KB
testcase_09 AC 399 ms
145,952 KB
testcase_10 AC 397 ms
145,956 KB
testcase_11 AC 405 ms
145,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my ($l, $m, $n) = map {Int($_)}, (get() for (1..3));

$m += $n div 25;
$n = $n % 25;

$l += $m div 4;
$m = $m % 4;

my $t = $l div 10;
$l = $l % 10;

say $l + $m + $n;
0