結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
76,240 KB
testcase_01 AC 72 ms
76,700 KB
testcase_02 AC 71 ms
76,520 KB
testcase_03 AC 72 ms
76,236 KB
testcase_04 AC 72 ms
76,492 KB
testcase_05 AC 74 ms
76,528 KB
testcase_06 AC 72 ms
76,216 KB
testcase_07 AC 72 ms
76,676 KB
testcase_08 AC 72 ms
76,400 KB
testcase_09 AC 72 ms
76,520 KB
testcase_10 AC 72 ms
76,504 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