結果
| 問題 | 
                            No.88 次はどっちだ
                             | 
                    
| コンテスト | |
| ユーザー | 
                             steek79
                         | 
                    
| 提出日時 | 2015-10-16 13:40:27 | 
| 言語 | Python2  (2.7.18)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 11 ms / 5,000 ms | 
| コード長 | 196 bytes | 
| コンパイル時間 | 296 ms | 
| コンパイル使用メモリ | 7,196 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-21 16:46:12 | 
| 合計ジャッジ時間 | 915 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 11 | 
ソースコード
S = raw_input()
stone = 0
for i in range(8):
    row = raw_input()
    stone += row.count("w") + row.count("b")
if stone %2 == 0:
    print S
else:
    print "oda" if S == "yukiko" else "yukiko"
            
            
            
        
            
steek79