結果

問題 No.43 野球の試合
ユーザー zimphazimpha
提出日時 2017-12-13 23:26:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 713 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-05-08 08:00:38
合計ジャッジ時間 1,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 63 ms
66,304 KB
testcase_07 AC 154 ms
76,032 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())
s = [list(input()) for i in range(n)]

ret = n
undefined = []
for i in range(n):
    for j in range(i + 1, n):
        if s[i][j] == '-':
            undefined.append((i, j))
for d in itertools.product('ox', repeat = len(undefined)):
    win = [0] * n
    for i in range(n):
        for j in range(i + 1, n):
            if s[i][j] == 'o':
                win[i] += 1
            elif s[i][j] == 'x':
                win[j] += 1
            elif s[i][j] == '-':
                if d[undefined.index((i,j))] == 'o':
                    win[i] += 1
                else:
                    win[j] += 1
    ret = min(ret, sorted(list(set(win)))[::-1].index(win[0]) + 1)
print(ret)
0