結果
問題 | No.43 野球の試合 |
ユーザー | ABKZ |
提出日時 | 2023-09-16 06:15:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 780 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 82,216 KB |
実行使用メモリ | 54,408 KB |
最終ジャッジ日時 | 2024-07-03 07:49:06 |
合計ジャッジ時間 | 1,153 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,548 KB |
testcase_01 | AC | 35 ms
53,536 KB |
testcase_02 | AC | 36 ms
53,028 KB |
testcase_03 | AC | 36 ms
52,728 KB |
testcase_04 | AC | 37 ms
54,408 KB |
testcase_05 | AC | 35 ms
53,492 KB |
testcase_06 | WA | - |
testcase_07 | AC | 37 ms
52,668 KB |
testcase_08 | WA | - |
testcase_09 | AC | 36 ms
53,936 KB |
testcase_10 | WA | - |
ソースコード
N = int(input()) s = [[x for x in input()] for _ in range(N)] s[0] = [x if x != '-' else 'o' for x in s[0]] for i in range(1,N): s[i][0] = s[i][0] if s[i][0] != '-' else 'x' for i in range(1,N): if s[i].count('o') > s[0].count('o'): s[i] = [x if x != '-' else 'o' for x in s[i]] for j in range(N): s[j][i] = s[j][i] if s[j][i] != '-' else 'x' _, *t = s c = [i+1 for i,_ in list(sorted(enumerate([x.count('o') for x in t]), key=lambda x: x[1]))] for i in c: for j in range(N): if i == j: s[i] = [x if x != '-' else 'o' for x in s[i]] else: s[j][i] = s[j][i] if s[j][i] != '-' else 'x' wc = [x.count('o') for x in s] ans = 1 for i in range(1, N): if wc[i] > wc[0]: ans += 1 print(ans)