結果
問題 | No.43 野球の試合 |
ユーザー | roiti46 |
提出日時 | 2015-02-11 23:30:55 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 362 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-06-23 18:59:06 |
合計ジャッジ時間 | 955 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,812 KB |
testcase_01 | AC | 11 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 12 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 14 ms
6,944 KB |
testcase_07 | AC | 253 ms
7,296 KB |
testcase_08 | AC | 12 ms
6,940 KB |
testcase_09 | AC | 11 ms
6,940 KB |
testcase_10 | AC | 11 ms
6,940 KB |
ソースコード
N = int(raw_input()) s = [raw_input() for _ in range(N)] remain = [[i,j] for i in range(N) for j in range(i+1,N) if s[i][j] == "-"] ans = 6 for i in range(2**len(remain)): win = [si.count("o") for si in s] for a,b in remain: if i & 1: win[[a,b][i&1]] += 1 i >>= 1 ans = min(ans, sorted(list(set(win)))[::-1].index(win[0])+1) print ans