結果
| 問題 |
No.88 次はどっちだ
|
| コンテスト | |
| ユーザー |
re1ns
|
| 提出日時 | 2015-11-06 20:51:22 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 341 bytes |
| コンパイル時間 | 428 ms |
| コンパイル使用メモリ | 55,392 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-13 13:06:08 |
| 合計ジャッジ時間 | 968 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main(){
string s;
char b;
int cnt=0;
cin >> s;
for(int i=0;i<64;i++){
cin >> b;
if(b=='b'||b=='w')cnt++;
}
if(!(cnt%2))cout << s << endl;
else{
if(s=="oda")cout << "yukiko" <<endl;
else cout << "oda" <<endl;
}
}
re1ns