結果

問題 No.43 野球の試合
ユーザー DialBirdDialBird
提出日時 2017-03-13 18:51:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 968 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-30 00:39:10
合計ジャッジ時間 1,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 74 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
score_board = [0]*N
results = []
candidate_orders = set([])

def calc():
    point = score_board[0]
    sort_borad = sorted(score_board)
    cnt = 1
    for i in sort_borad:
        if point < i:
            cnt += 1
            point = i
    candidate_orders.add(cnt)

def check(x, y):
    if x == N:
        y += 1
        if y == N:
            return calc()
        x = y
    if results[y][x] == '#':
        check(x + 1, y)
    elif results[y][x] == 'o':
        score_board[y] += 1
        check(x + 1, y)
        score_board[y] -= 1
    elif results[y][x] == 'x':
        score_board[x] += 1
        check(x + 1, y)
        score_board[x] -= 1
    elif results[y][x] == '-':
        score_board[x] += 1
        check(x + 1, y)
        score_board[x] -= 1
        score_board[y] += 1
        check(x + 1, y)
        score_board[y] -= 1

for i in range(N):
    row = list(input())
    results.append(row)

check(0,0)

print(min(candidate_orders))
0