結果

問題 No.351 市松スライドパズル
ユーザー HeyHey0111HeyHey0111
提出日時 2016-03-13 02:41:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 62,220 KB
実行使用メモリ 13,348 KB
最終ジャッジ日時 2024-09-25 11:14:18
合計ジャッジ時間 6,131 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
12,048 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 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,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 317 ms
12,256 KB
testcase_14 AC 320 ms
13,348 KB
testcase_15 AC 322 ms
11,708 KB
testcase_16 AC 325 ms
12,012 KB
testcase_17 AC 318 ms
11,804 KB
testcase_18 AC 321 ms
12,928 KB
testcase_19 AC 327 ms
12,708 KB
testcase_20 AC 330 ms
12,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
typedef struct hoge{
    char c;
    int n;
    hoge(){
        c='a';
        n=0;
    }
    hoge(char c,int n):c(c),n(n){};
}hoge;
int main(void){
    int n,h,w;
    cin >> h >> w;
    cin >> n;
    vector<hoge> ho;
    
    for(int i=0;i<n;i++){
        int nn;
        char c;
        cin >> c >> nn;
        ho.push_back(hoge(c,nn));
        //cin >> ho[i].c >> ho[i].n;
    }
    int x=0,y=0;
    while(!ho.empty()){
        if(ho.back().c=='R'&&x==ho.back().n){
            y=(y+h-1)%h;
        }else if(ho.back().c=='C'&&y==ho.back().n){
            x=(x+w-1)%w;
        }
        ho.pop_back();
    }
    cout <<((x+y)%2  ? "black" : "white" )<<endl;
    return 0;
}
0