結果

問題 No.88 次はどっちだ
ユーザー おきょん.おきょん.
提出日時 2022-01-11 17:16:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 692 bytes
コンパイル時間 974 ms
コンパイル使用メモリ 89,792 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-26 20:42:18
合計ジャッジ時間 1,644 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//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;
    }
}
0