結果

問題 No.88 次はどっちだ
ユーザー yuki2006
提出日時 2015-02-21 13:48:22
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 154 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 76,916 KB
実行使用メモリ 75,656 KB
最終ジャッジ日時 2024-06-23 21:34:23
合計ジャッジ時間 2,001 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

S = raw_input()
count = 0
for _ in xrange(8):
    count += sum(b == "." for b in raw_input())

if count % 2 == 0:
    print "oda"
else:
    print "yukiko"
0