結果

問題 No.351 市松スライドパズル
ユーザー btkbtk
提出日時 2016-03-24 02:33:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 1,521 ms
コンパイル使用メモリ 162,264 KB
実行使用メモリ 38,400 KB
最終ジャッジ日時 2024-09-25 02:58:34
合計ジャッジ時間 4,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
38,272 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 160 ms
37,504 KB
testcase_14 AC 163 ms
37,760 KB
testcase_15 AC 164 ms
38,272 KB
testcase_16 AC 165 ms
38,272 KB
testcase_17 AC 158 ms
38,272 KB
testcase_18 AC 159 ms
38,400 KB
testcase_19 AC 164 ms
38,400 KB
testcase_20 AC 165 ms
38,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
struct INIT{INIT(){ios::sync_with_stdio(false);cin.tie(0);}}init;

int main() {
    int r=0,c=0,R,C,N;
    cin>>R>>C>>N;
    vector<string> S(N);
    vector<int> K(N);

    for(int i = 0; i < N; i++)cin>>S[i]>>K[i];
    reverse(S.begin(),S.end());
    reverse(K.begin(),K.end());
    for(int i = 0; i < N; i++)
        if(S[i]=="R"){
            if(r==K[i])
                c=(c+C-1)%C;
        }
        else{
            if(c==K[i])
                r=(r+R-1)%R;
        }

    if((r+c)&1)cout<<"black"<<endl;
    else cout<<"white"<<endl;
    return 0;
}
0