結果
問題 | No.88 次はどっちだ |
ユーザー | YU Hirose |
提出日時 | 2024-06-19 12:43:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 363 bytes |
コンパイル時間 | 778 ms |
コンパイル使用メモリ | 82,052 KB |
実行使用メモリ | 53,684 KB |
最終ジャッジ日時 | 2024-06-19 12:43:05 |
合計ジャッジ時間 | 2,998 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,120 KB |
testcase_01 | WA | - |
testcase_02 | AC | 35 ms
53,156 KB |
testcase_03 | AC | 35 ms
52,740 KB |
testcase_04 | AC | 34 ms
52,516 KB |
testcase_05 | AC | 33 ms
52,212 KB |
testcase_06 | WA | - |
testcase_07 | AC | 38 ms
51,756 KB |
testcase_08 | AC | 38 ms
52,696 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
s = input() g = [] for _ in range(8): g.append(list(input())) b, w = 0, 0 for i in range(8): for j in range(8): if g[i][j] == "b": b += 1 else: w += 1 if (b+w) % 2 == 0: if s == "yukiko": print(s) else: print("oda") else: if s == "yukiko": print("oda") else: print(s)