結果
問題 | No.43 野球の試合 |
ユーザー | 👑 rin204 |
提出日時 | 2022-01-20 21:08:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 767 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 65,552 KB |
最終ジャッジ日時 | 2024-11-24 05:48:34 |
合計ジャッジ時間 | 1,055 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
53,368 KB |
testcase_01 | AC | 34 ms
53,616 KB |
testcase_02 | WA | - |
testcase_03 | AC | 33 ms
53,320 KB |
testcase_04 | AC | 34 ms
52,920 KB |
testcase_05 | AC | 34 ms
52,644 KB |
testcase_06 | WA | - |
testcase_07 | AC | 48 ms
65,552 KB |
testcase_08 | AC | 34 ms
53,532 KB |
testcase_09 | AC | 34 ms
53,748 KB |
testcase_10 | WA | - |
ソースコード
n = int(input()) S = [list(input()) for _ in range(n)] win = 0 for j in range(1, n): if S[0][j] == "-": S[0][j] = "o" S[j][0] = "x" if S[0][j] == "o": win += 1 lst = [] for i in range(1, n): for j in range(i + 1, n): if S[i][j] == "-": lst.append((i, j)) ans = n l = len(lst) for bit in range(1 << l): for i in range(l): if bit >> i & 1: S[lst[i][0]][lst[i][1]] = "o" S[lst[i][1]][lst[i][0]] = "x" se = {win} for i in range(1, n): tot = 0 for j in range(n): if S[i][j] == "o": tot += 1 se.add(tot) ls = sorted(se, reverse = True) ans = min(ans, ls.index(win) + 1) print(ans)