結果

問題 No.156 キャンディー・ボックス
ユーザー LeonardoneLeonardone
提出日時 2015-10-17 00:54:13
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 190 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 20,384 KB
最終ジャッジ日時 2024-07-22 06:54:50
合計ジャッジ時間 16,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
18,560 KB
testcase_01 AC 86 ms
12,288 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 542 ms
13,312 KB
testcase_06 AC 1,171 ms
13,184 KB
testcase_07 AC 967 ms
13,440 KB
testcase_08 AC 794 ms
13,312 KB
testcase_09 AC 462 ms
13,056 KB
testcase_10 AC 904 ms
13,312 KB
testcase_11 AC 534 ms
13,184 KB
testcase_12 AC 1,128 ms
13,184 KB
testcase_13 AC 749 ms
13,312 KB
testcase_14 AC 550 ms
13,184 KB
testcase_15 AC 918 ms
13,312 KB
testcase_16 AC 466 ms
12,928 KB
testcase_17 AC 766 ms
13,184 KB
testcase_18 AC 322 ms
13,184 KB
testcase_19 AC 382 ms
13,312 KB
testcase_20 AC 96 ms
13,184 KB
testcase_21 AC 148 ms
13,312 KB
testcase_22 AC 295 ms
13,312 KB
testcase_23 AC 170 ms
13,312 KB
testcase_24 AC 83 ms
12,032 KB
testcase_25 AC 82 ms
12,160 KB
testcase_26 AC 80 ms
12,288 KB
testcase_27 AC 83 ms
12,288 KB
testcase_28 AC 82 ms
12,288 KB
testcase_29 AC 85 ms
12,032 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#! ruby
# yukicoder My Practice
# author: Leonardone @ NEETSDKASU

(N, M), c = $<.map{|x| x.split.map(&:to_i)}

M.times do
	c.sort_by!{|x| x == 0 ? 10**5 : x}
	c[0] -= 1
end

puts c.count(0)
0