結果

問題 No.43 野球の試合
ユーザー tatt61880tatt61880
提出日時 2021-04-03 12:44:17
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 753 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 148,840 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 12:21:34
合計ジャッジ時間 3,062 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 8 ms
5,376 KB
testcase_07 AC 30 ms
5,376 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var s: [][]char :: #[n][]char
	for i(0, n - 1)
		do s[i] :: cui@input()
	end for
	
	var ans: int :: n
	var num: int :: n * (n - 1) / 2
	for ii(0, 2 ^ num - 1)
		var id: int :: ii
		var cnt: []int :: #[n]int
		for i(0, n - 1)
			for j(i + 1, n - 1)
				var result: char :: "ox"[id % 2]
				do id :/ 2
				if(s[i][j] <> '-' & s[i][j] <> result)
					skip ii
				end if
				do cnt[result = 'o' ?(i, j)] :+ 1
			end for
		end for
		var cnt0: int :: cnt[0]
		do cnt.sort()
		do cnt.reverse()
		var rank: int :: 1
		for i(0, n - 1)
			if(cnt[i] = cnt0)
				do ans :: [ans, rank].min()
				break i
			end if
			if(cnt[i] <> cnt[i + 1])
				do rank :+ 1
			end if
		end for
	end for
	do cui@print("\{ans}\n")
end func
0