結果
問題 | No.43 野球の試合 |
ユーザー | tookunn_1213 |
提出日時 | 2016-05-04 13:33:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 618 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-05 06:24:58 |
合計ジャッジ時間 | 1,111 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,624 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | AC | 24 ms
10,496 KB |
testcase_03 | AC | 25 ms
10,496 KB |
testcase_04 | AC | 25 ms
10,752 KB |
testcase_05 | AC | 25 ms
10,752 KB |
testcase_06 | AC | 26 ms
10,624 KB |
testcase_07 | AC | 188 ms
10,624 KB |
testcase_08 | WA | - |
testcase_09 | AC | 26 ms
10,752 KB |
testcase_10 | WA | - |
ソースコード
def dfs(a,s,n): if n * n == a: rank,x,o = 1,0,0 for i in range(n): if s[0][i] == 'x': x += 1 elif s[0][i] == 'o': o += 1 for i in range(1,n): X,O = 0,0 for j in range(n): if s[i][j] == 'x': X += 1 elif s[i][j] == 'o': O += 1 if O > o: rank += 1 return rank y = a // n x = a % n if s[y][x] != '-': return dfs(a + 1,s,n) else: s[y][x] = 'x' s[x][y] = 'o' ret = dfs(a + 1,s,n) s[y][x] = 'o' s[x][y] = 'x' ret = min(ret,dfs(a + 1,s,n)) s[y][x] = s[x][y] = '-' return ret N = int(input()) s = [ list(input()) for i in range(N)] print(dfs(0,s,N))