結果
| 問題 |
No.43 野球の試合
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-10-27 11:43:10 |
| 言語 | Python2 (2.7.18) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 725 bytes |
| コンパイル時間 | 118 ms |
| コンパイル使用メモリ | 7,040 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2024-11-24 04:54:08 |
| 合計ジャッジ時間 | 1,140 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 6 WA * 1 |
ソースコード
from itertools import product
N = input()
league = [list(raw_input()) for _ in xrange(N)]
unfixed = []
for i in xrange(N):
for j in xrange(i+1, N):
if league[i][j] == '-':
unfixed.append((i, j))
if len(unfixed) == 0:
rank = sorted(set(map(lambda x:x.count('o'), league)), reverse=True)
print rank
print rank.index(league[0].count('o'))+1
exit()
ans = N+1
for ox in product('ox', repeat=len(unfixed)):
for k in xrange(len(unfixed)):
i, j = unfixed[k]
league[i][j] = ox[k]
league[j][i] = 'o' if ox[k] == 'x' else 'x'
rank = sorted(set(map(lambda x:x.count('o'), league)), reverse=True)
ans = min(ans, rank.index(league[0].count('o'))+1)
print ans