結果

問題 No.88 次はどっちだ
ユーザー yuki2006yuki2006
提出日時 2015-02-21 13:50:22
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 170 bytes
コンパイル時間 1,238 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 75,792 KB
最終ジャッジ日時 2024-06-23 21:34:26
合計ジャッジ時間 1,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 73 ms
75,532 KB
testcase_03 AC 72 ms
75,788 KB
testcase_04 RE -
testcase_05 AC 72 ms
75,428 KB
testcase_06 AC 73 ms
75,792 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 72 ms
75,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

W = ["yukiko", "oda"]
if W[0] != S:
    W = reversed(W)

print W[count % 2]
0