結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,652 KB
testcase_01 AC 36 ms
52,556 KB
testcase_02 AC 36 ms
53,000 KB
testcase_03 AC 36 ms
53,200 KB
testcase_04 AC 38 ms
53,028 KB
testcase_05 AC 40 ms
53,704 KB
testcase_06 AC 58 ms
67,104 KB
testcase_07 AC 134 ms
76,376 KB
testcase_08 AC 37 ms
52,696 KB
testcase_09 AC 36 ms
53,212 KB
testcase_10 AC 37 ms
52,756 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