結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,768 KB
testcase_01 AC 77 ms
75,456 KB
testcase_02 AC 77 ms
75,308 KB
testcase_03 AC 78 ms
75,292 KB
testcase_04 AC 79 ms
75,540 KB
testcase_05 AC 76 ms
75,704 KB
testcase_06 AC 79 ms
75,792 KB
testcase_07 AC 82 ms
75,456 KB
testcase_08 AC 78 ms
75,300 KB
testcase_09 AC 75 ms
75,308 KB
testcase_10 AC 77 ms
75,556 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.reverse()

print W[count % 2]
0