結果
問題 | No.43 野球の試合 |
ユーザー | convexineq |
提出日時 | 2020-12-03 20:23:09 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 96 ms / 5,000 ms |
コード長 | 612 bytes |
コンパイル時間 | 321 ms |
コンパイル使用メモリ | 81,856 KB |
実行使用メモリ | 76,032 KB |
最終ジャッジ日時 | 2024-09-14 05:48:42 |
合計ジャッジ時間 | 1,443 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,968 KB |
testcase_01 | AC | 38 ms
52,224 KB |
testcase_02 | AC | 37 ms
52,096 KB |
testcase_03 | AC | 37 ms
52,096 KB |
testcase_04 | AC | 38 ms
52,096 KB |
testcase_05 | AC | 37 ms
52,352 KB |
testcase_06 | AC | 48 ms
61,312 KB |
testcase_07 | AC | 96 ms
76,032 KB |
testcase_08 | AC | 38 ms
52,352 KB |
testcase_09 | AC | 38 ms
52,096 KB |
testcase_10 | AC | 38 ms
52,096 KB |
ソースコード
n = int(input()) b = [input() for _ in range(n)] def dfs(i,j): global ans if i==n-1: sr = sorted(set(r),reverse=True) ans = min(ans,sr.index(r[0])+1) return if i >= j: return dfs(i,j+1) ni,nj = i,j+1 if nj >= n: nj = 0 ni = i+1 if b[i][j] == "o": r[i] += 1 dfs(ni,nj) r[i] -= 1 elif b[i][j] == "x": r[j] += 1 dfs(ni,nj) r[j] -= 1 else: r[i] += 1 dfs(ni,nj) r[i] -= 1 r[j] += 1 dfs(ni,nj) r[j] -= 1 ans = 6 r = [0]*n dfs(0,0) print(ans)