結果

問題 No.88 次はどっちだ
ユーザー pof
提出日時 2019-07-07 13:02:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-04 12:15:32
合計ジャッジ時間 1,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
c=0
for i in range(8):
    t=input()
    c+=t.count('b')
    c+=t.count('w')

if c%2==0:
    print(s)
else:
    r=["oda","yukiko"]
    r.remove(s)
    print(r[0])
0