結果

問題 No.709 優勝可能性
ユーザー letrangerjpletrangerjp
提出日時 2018-06-30 01:22:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,720 ms / 3,500 ms
コード長 270 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-07-01 00:43:12
合計ジャッジ時間 17,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,288 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 92 ms
12,160 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 90 ms
12,032 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 781 ms
24,192 KB
testcase_11 AC 641 ms
22,912 KB
testcase_12 AC 1,241 ms
39,552 KB
testcase_13 AC 1,617 ms
55,936 KB
testcase_14 AC 1,583 ms
56,320 KB
testcase_15 AC 1,614 ms
57,472 KB
testcase_16 AC 1,613 ms
57,472 KB
testcase_17 AC 1,711 ms
61,568 KB
testcase_18 AC 90 ms
12,288 KB
testcase_19 AC 92 ms
12,160 KB
testcase_20 AC 1,707 ms
56,448 KB
testcase_21 AC 1,720 ms
56,704 KB
testcase_22 AC 88 ms
12,416 KB
testcase_23 AC 90 ms
12,416 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|
    if x > d
      s.map{|j|
        (c[j]-=1)<1&&a-=1
      }
      d=x
      s=[]
    end
    x<d||(c[i]+=1;s<<i)
    [d,s]
  }
  p a += c[i]>0?1:0
  i+=1
}
0