結果

問題 No.43 野球の試合
ユーザー dangodango
提出日時 2023-07-09 16:19:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 858 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 76,180 KB
最終ジャッジ日時 2024-07-23 13:29:12
合計ジャッジ時間 1,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,072 KB
testcase_01 AC 39 ms
52,728 KB
testcase_02 AC 37 ms
53,200 KB
testcase_03 AC 37 ms
53,624 KB
testcase_04 AC 44 ms
61,700 KB
testcase_05 AC 50 ms
63,628 KB
testcase_06 AC 66 ms
75,920 KB
testcase_07 AC 85 ms
75,852 KB
testcase_08 AC 63 ms
76,180 KB
testcase_09 AC 54 ms
74,344 KB
testcase_10 AC 63 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    s = [input() for _ in range(n)]
    ans = n
    num = n * (n - 1) // 2
    for ii in range(2 ** num):
        id_ = ii
        cnt = [0] * n
        for i in range(n):
            for j in range(i + 1, n):
                result = "ox"[id_ % 2]
                id_ //= 2
                if s[i][j] != '-' and s[i][j] != result:
                    break
                cnt[i if result == 'o' else j] += 1
            else:
                continue
            break
        else:
            cnt0 = cnt[0]
            cnt.sort(reverse=True)
            rank = 1
            for i in range(n):
                if cnt[i] == cnt0:
                    ans = min(ans, rank)
                    break
                if cnt[i] != cnt[i + 1]:
                    rank += 1
    print(ans)

if __name__ == '__main__':
    main()
0