結果
問題 |
No.88 次はどっちだ
|
ユーザー |
|
提出日時 | 2022-01-11 17:16:08 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 692 bytes |
コンパイル時間 | 1,022 ms |
コンパイル使用メモリ | 88,136 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 11:40:49 |
合計ジャッジ時間 | 1,736 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
//No.88 次はどっちだ #include <iostream> #include <string> #include <vector> using namespace std; signed main(){ string s; cin >> s; vector<string> b(8); int black = 0; int white = 0; for( int i = 0 ; i < 8 ; ++i){ cin >> b[i]; for( int j = 0 ; j < 8 ; ++j){ if( b[i][j] == 'b') ++black; else if( b[i][j] == 'w') ++white; } } if(( black % 2 != 0 && white %2 != 0 ) || ( !(black & 1) && !(white & 1 ))){ if ( s == "oda") cout << s << endl; else if ( s == "yukiko") cout << s << endl; } else { if ( s == "oda" ) cout << "yukiko" << endl; else cout << "oda" << endl; } }