結果

問題 No.709 優勝可能性
ユーザー letrangerjpletrangerjp
提出日時 2018-06-30 01:30:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,747 ms / 3,500 ms
コード長 196 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-07-01 00:44:06
合計ジャッジ時間 16,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 85 ms
12,416 KB
testcase_04 AC 86 ms
12,160 KB
testcase_05 AC 87 ms
12,288 KB
testcase_06 AC 86 ms
12,288 KB
testcase_07 AC 86 ms
12,416 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 87 ms
12,160 KB
testcase_10 AC 756 ms
24,064 KB
testcase_11 AC 626 ms
22,656 KB
testcase_12 AC 1,212 ms
39,680 KB
testcase_13 AC 1,548 ms
55,936 KB
testcase_14 AC 1,474 ms
56,448 KB
testcase_15 AC 1,534 ms
57,344 KB
testcase_16 AC 1,606 ms
57,600 KB
testcase_17 AC 1,578 ms
61,440 KB
testcase_18 AC 87 ms
12,160 KB
testcase_19 AC 87 ms
12,160 KB
testcase_20 AC 1,562 ms
56,576 KB
testcase_21 AC 1,747 ms
56,320 KB
testcase_22 AC 92 ms
12,160 KB
testcase_23 AC 90 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

(N,M),*R=$<.map{|s|s.split.map &:to_i}
m=M.times.map{[0,[]]}
c=[i=a=0]*N
R.map{|r|m=m.zip(r).map{|(d,s),x|x>d&&(s.map{|j|(c[j]-=1)<1&&a-=1};d=x;s=[])
x<d||(c[i]+=1;s<<i)
[d,s]}
p a+=c[i]<=>0
i+=1}
0