結果
| 問題 |
No.88 次はどっちだ
|
| コンテスト | |
| ユーザー |
kongarishisyamo
|
| 提出日時 | 2016-02-24 04:30:51 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 306 bytes |
| コンパイル時間 | 551 ms |
| コンパイル使用メモリ | 57,276 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-22 13:17:09 |
| 合計ジャッジ時間 | 1,208 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main(){
string s;
cin>>s;
string ban;
int c=0;
for(int i=0;i<8;i++){
cin>>ban;
for(int j=0;j<8;j++){
if(ban[j]=='.') c++;
}
}
if((c-4)%2==0) cout<<s<<endl;
else if(s=="oda") cout<<"yukiko"<<endl;
else cout<<"oda"<<endl;
}
kongarishisyamo