結果
問題 | No.88 次はどっちだ |
ユーザー | GrayCoder |
提出日時 | 2018-06-03 16:39:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 900 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-30 09:24:29 |
合計ジャッジ時間 | 1,010 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,624 KB |
testcase_01 | AC | 31 ms
10,624 KB |
testcase_02 | AC | 29 ms
10,624 KB |
testcase_03 | AC | 28 ms
10,752 KB |
testcase_04 | AC | 29 ms
10,752 KB |
testcase_05 | WA | - |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 30 ms
10,624 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 30 ms
10,624 KB |
ソースコード
from sys import stdin from itertools import product def main(): S = input() B = stdin.read().splitlines() if S == 'oda': players = ['oda', 'yukiko'] else: players = ['yukiko', 'oda'] cnt = 64 - ''.join(B).count('.') if cnt % 2: for i, j in product(range(5), repeat=2): if all((B[i][j] == '.', B[i][j+1] == 'b', B[i][j+2] == 'w')) or \ all((B[i][j] == '.', B[i+1][j] == 'b', B[i+2][j] == 'w')): print(players[1]) break else: print(players[0]) else: for i, j in product(range(5), repeat=2): if all((B[i][j] == '.', B[i][j+1] == 'w', B[i][j+2] == 'b')) or \ all((B[i][j] == '.', B[i+1][j] == 'w', B[i+2][j] == 'b')): print(players[0]) break else: print(players[1]) main()