結果

問題 No.88 次はどっちだ
ユーザー yuki2006yuki2006
提出日時 2015-02-21 13:50:22
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 170 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 76,836 KB
最終ジャッジ日時 2023-09-06 02:43:16
合計ジャッジ時間 1,849 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 71 ms
76,712 KB
testcase_03 AC 73 ms
76,216 KB
testcase_04 RE -
testcase_05 AC 72 ms
76,212 KB
testcase_06 AC 72 ms
76,512 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 75 ms
76,236 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