結果
| 問題 | No.88 次はどっちだ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-09-04 09:56:40 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 248 bytes |
| 記録 | |
| コンパイル時間 | 138 ms |
| コンパイル使用メモリ | 77,592 KB |
| 最終ジャッジ日時 | 2025-12-03 16:35:51 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 11 |
ソースコード
S = raw_input()
bcnt = 0
wcnt = 0
for i in range(0,9):
t = tuple(raw_input().split())
bcnt += t.count('b')
wcnt += t.count('w')
if bcnt == wcnt:
print S
else:
if S == 'oda':
print 'yukiko'
else:
print 'oda'