結果
| 問題 | 
                            No.88 次はどっちだ
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-09-10 02:04:08 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 28 ms / 5,000 ms | 
| コード長 | 328 bytes | 
| コンパイル時間 | 299 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 10,624 KB | 
| 最終ジャッジ日時 | 2024-11-26 02:58:20 | 
| 合計ジャッジ時間 | 1,265 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 11 | 
ソースコード
from collections import *
from itertools import *
from functools import *
import math,sys
input = sys.stdin.readline
S = input()[:-1]
B = [input()[:-1] for _ in range(8)]
cnt = 0
for b in B:
    cnt += b.count('.')
if cnt%2==0:
    print(S)
else:
    if S=='oda':
        print('yukiko')
    else:
        print('oda')