結果

問題 No.43 野球の試合
ユーザー pekempeypekempey
提出日時 2016-11-19 23:59:20
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 445 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-05 10:24:07
合計ジャッジ時間 1,529 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 WA -
testcase_06 AC 57 ms
65,536 KB
testcase_07 WA -
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
g = [list(input()) for _ in range(N)]

def dfs(g, yx):
	if yx == N * N:
		win = [g[i].count('o') for i in range(N)]
		return list(set(win))[::-1].index(win[0]) + 1

	y, x = yx // N, yx % N
	if g[y][x] != '-': return dfs(g, yx + 1)

	res = 100

	g[y][x], g[x][y] = 'o', 'x'
	res = min(res, dfs(g, yx + 1))

	g[y][x], g[x][y] = 'x', 'o'
	res = min(res, dfs(g, yx + 1))

	g[y][x], g[x][y] = '-', '-'

	return res

print(dfs(g, 0))
0