結果

問題 No.709 優勝可能性
ユーザー cielciel
提出日時 2018-07-08 00:32:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 983 ms / 3,500 ms
コード長 315 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-07-05 20:38:48
合計ジャッジ時間 11,722 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,032 KB
testcase_01 AC 78 ms
12,032 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 75 ms
11,904 KB
testcase_04 AC 71 ms
11,904 KB
testcase_05 AC 72 ms
12,032 KB
testcase_06 AC 71 ms
12,160 KB
testcase_07 AC 72 ms
12,160 KB
testcase_08 AC 73 ms
12,032 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 AC 588 ms
22,016 KB
testcase_11 AC 478 ms
21,760 KB
testcase_12 AC 749 ms
24,192 KB
testcase_13 AC 934 ms
32,000 KB
testcase_14 AC 898 ms
32,512 KB
testcase_15 AC 890 ms
32,640 KB
testcase_16 AC 949 ms
34,432 KB
testcase_17 AC 983 ms
41,600 KB
testcase_18 AC 74 ms
12,160 KB
testcase_19 AC 72 ms
12,032 KB
testcase_20 AC 907 ms
32,384 KB
testcase_21 AC 899 ms
32,640 KB
testcase_22 AC 74 ms
12,288 KB
testcase_23 AC 72 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

(n,m),*a=$<.map{|e|e.split.map &:to_i}
deg=[r=0]*n
ma=[-1]*m
people=m.times.map{[]}
n.times{|i|
	m.times{|j|
		if ma[j]<a[i][j]
			people[j].each{|e|
				deg[e]-=1
				r-=1 if deg[e]==0
			}
			people[j]=[]
			ma[j]=a[i][j]
		end
		if ma[j]==a[i][j]
			deg[i]+=1
			r+=1 if deg[i]==1
			people[j]<<i
		end
	}
	p r
}
0