結果

問題 No.43 野球の試合
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-22 14:13:35
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-23 21:49:22
合計ジャッジ時間 1,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 12 ms
6,940 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 14 ms
6,940 KB
testcase_07 AC 382 ms
7,296 KB
testcase_08 WA -
testcase_09 AC 10 ms
6,944 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
table=[]
n_null=0
for i in range(N):
    s= raw_input()
    table.append(s)
    for t in s:
        if t=='-':
            n_null+=1
n_null/=2
bestans=N
for mask in range(1<<n_null):
    n_win=[0 for i in range(N)]
    ind=0
    for i in range(N):
        for j in range(i+1,N):
            if table[i][j]=='o':
                n_win[i]+=1
            elif table[i][j]=='x':
                n_win[j]+=1
            else:
                if (mask&(1<<ind))!=0:
                    n_win[i]+=1
                else:
                    n_win[j]+=1
                ind+=1
    ans=1
    for i in range(1,N):
        if n_win[i]>n_win[0]:
            ans+=1
    bestans=min(ans,bestans)
print bestans
            
0