結果
問題 | No.709 優勝可能性 |
ユーザー | mai |
提出日時 | 2018-06-30 00:38:21 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 1,087 ms / 3,500 ms |
コード長 | 627 bytes |
コンパイル時間 | 849 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 22,016 KB |
最終ジャッジ日時 | 2024-07-01 00:37:54 |
合計ジャッジ時間 | 12,923 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
12,160 KB |
testcase_01 | AC | 90 ms
12,160 KB |
testcase_02 | AC | 91 ms
12,160 KB |
testcase_03 | AC | 96 ms
12,160 KB |
testcase_04 | AC | 92 ms
12,416 KB |
testcase_05 | AC | 90 ms
12,160 KB |
testcase_06 | AC | 91 ms
12,160 KB |
testcase_07 | AC | 94 ms
12,288 KB |
testcase_08 | AC | 94 ms
12,416 KB |
testcase_09 | AC | 90 ms
12,160 KB |
testcase_10 | AC | 671 ms
12,928 KB |
testcase_11 | AC | 579 ms
13,056 KB |
testcase_12 | AC | 862 ms
13,312 KB |
testcase_13 | AC | 1,014 ms
13,056 KB |
testcase_14 | AC | 958 ms
13,056 KB |
testcase_15 | AC | 964 ms
13,568 KB |
testcase_16 | AC | 1,036 ms
15,616 KB |
testcase_17 | AC | 1,087 ms
22,016 KB |
testcase_18 | AC | 88 ms
12,160 KB |
testcase_19 | AC | 89 ms
12,160 KB |
testcase_20 | AC | 973 ms
13,056 KB |
testcase_21 | AC | 1,016 ms
13,056 KB |
testcase_22 | AC | 93 ms
12,288 KB |
testcase_23 | AC | 92 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
def ascan; gets.split.map(&:to_i); end N, M = ascan params = nil degree = [0]*N degree[0] = M count = 1 N.times do |i| player = ascan if !params params = player.map{|e| [e,[i]]} else M.times do |j| if params[j][0] < player[j] params[j][1].each do |id| count -= 1 if (degree[id] -= 1) == 0 end params[j] = [player[j], []] end if params[j][0] <= player[j] params[j][1] << i count += 1 if (degree[i] += 1) == 1 end end end p count end