結果
問題 | No.43 野球の試合 |
ユーザー | tookunn_1213 |
提出日時 | 2015-12-14 00:01:14 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 587 bytes |
コンパイル時間 | 595 ms |
コンパイル使用メモリ | 7,068 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 11:48:54 |
合計ジャッジ時間 | 736 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,144 KB |
testcase_01 | AC | 10 ms
6,272 KB |
testcase_02 | AC | 10 ms
6,144 KB |
testcase_03 | AC | 11 ms
6,272 KB |
testcase_04 | WA | - |
testcase_05 | AC | 11 ms
6,272 KB |
testcase_06 | AC | 12 ms
6,144 KB |
testcase_07 | WA | - |
testcase_08 | AC | 11 ms
6,272 KB |
testcase_09 | AC | 10 ms
6,144 KB |
testcase_10 | WA | - |
ソースコード
N = int(raw_input()) S = [[i,list(raw_input())] for i in range(N)] for i in range(N): if S[0][1][i] == '-': S[0][1][i],S[i][1][0] = 'o','x' S = sorted(S,cmp=lambda x,y:cmp(x[1].count('-') + x[1].count('o'),y[1].count('x') + y[1].count('o'))) for i in range(N): for j in range(N): if S[i][1][j] == '-': S[i][1][j],S[j][1][i] = 'o','x' S = sorted(S,cmp=lambda x,y:cmp(x[1].count('o'),y[1].count('o')),reverse=True) rank = 1 prev = S[0][1].count('o') for i in range(0,N): if prev > S[i][1].count('o'): rank += 1 prev = S[i][1].count('o') if S[i][0] == 0: print rank break