結果

問題 No.88 次はどっちだ
ユーザー YU HiroseYU Hirose
提出日時 2024-06-19 12:43:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 53,376 KB
最終ジャッジ日時 2024-06-19 12:43:56
合計ジャッジ時間 2,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,524 KB
testcase_01 WA -
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 36 ms
52,488 KB
testcase_04 AC 36 ms
52,540 KB
testcase_05 AC 36 ms
51,876 KB
testcase_06 WA -
testcase_07 AC 35 ms
53,132 KB
testcase_08 AC 37 ms
52,068 KB
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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("yukiko")
    else:
        print("oda")
else:
    if s == "yukiko":
        print("oda")
    else:
        print("yukiko")
0