結果

問題 No.709 優勝可能性
ユーザー kotatsugamekotatsugame
提出日時 2018-06-29 23:35:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,144 ms / 3,500 ms
コード長 263 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-07-01 00:21:12
合計ジャッジ時間 12,459 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 89 ms
12,288 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 89 ms
12,288 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 84 ms
12,160 KB
testcase_10 AC 705 ms
14,208 KB
testcase_11 AC 602 ms
14,208 KB
testcase_12 AC 895 ms
14,336 KB
testcase_13 AC 1,072 ms
14,208 KB
testcase_14 AC 1,016 ms
14,464 KB
testcase_15 AC 1,023 ms
15,232 KB
testcase_16 AC 1,084 ms
16,896 KB
testcase_17 AC 1,144 ms
24,064 KB
testcase_18 AC 87 ms
12,160 KB
testcase_19 AC 86 ms
12,160 KB
testcase_20 AC 1,013 ms
14,336 KB
testcase_21 AC 1,019 ms
14,464 KB
testcase_22 AC 87 ms
12,288 KB
testcase_23 AC 88 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m=gets.split.map &:to_i;
ans=0;M=[0]*m;t=[[]]*m;cnt=[0]*n;j=0;
$<.map{|s|
	s.split.map(&:to_i).map.with_index{|a,i|
		if M[i]<a then
			M[i]=a;
			t[i].map{|b|(cnt[b]-=1)<1&&ans-=1}
			t[i]=[];
		end
		(t[i]<<j;cnt[j]+=1)<2&&ans+=1 if M[i]==a
	}
	p ans;
	j+=1
}
0