結果

問題 No.5 数字のブロック
ユーザー %20%20
提出日時 2017-09-15 17:46:55
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 442 ms / 5,000 ms
コード長 105 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 147,332 KB
実行使用メモリ 148,644 KB
最終ジャッジ日時 2024-11-18 11:42:54
合計ジャッジ時間 17,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 375 ms
146,172 KB
testcase_01 AC 383 ms
146,060 KB
testcase_02 AC 376 ms
146,172 KB
testcase_03 AC 424 ms
148,644 KB
testcase_04 AC 401 ms
145,936 KB
testcase_05 AC 431 ms
146,252 KB
testcase_06 AC 411 ms
146,056 KB
testcase_07 AC 417 ms
146,304 KB
testcase_08 AC 406 ms
145,680 KB
testcase_09 AC 400 ms
145,912 KB
testcase_10 AC 423 ms
146,432 KB
testcase_11 AC 405 ms
145,804 KB
testcase_12 AC 426 ms
146,444 KB
testcase_13 AC 423 ms
148,184 KB
testcase_14 AC 391 ms
145,916 KB
testcase_15 AC 394 ms
145,924 KB
testcase_16 AC 436 ms
146,568 KB
testcase_17 AC 442 ms
146,800 KB
testcase_18 AC 417 ms
146,236 KB
testcase_19 AC 434 ms
146,232 KB
testcase_20 AC 388 ms
146,000 KB
testcase_21 AC 374 ms
145,920 KB
testcase_22 AC 370 ms
146,176 KB
testcase_23 AC 380 ms
145,936 KB
testcase_24 AC 394 ms
146,040 KB
testcase_25 AC 404 ms
145,808 KB
testcase_26 AC 396 ms
145,920 KB
testcase_27 AC 405 ms
146,040 KB
testcase_28 AC 380 ms
145,932 KB
testcase_29 AC 391 ms
146,000 KB
testcase_30 AC 400 ms
146,064 KB
testcase_31 AC 391 ms
145,920 KB
testcase_32 AC 391 ms
146,064 KB
testcase_33 AC 387 ms
145,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my$L=get;
get;
my$z=0;
my@a;
++@a[$_]for get.words;
for 1..@a {$_>$L or$L-=$_,$z++while @a[$_]--}
say $z
0