結果

問題 No.5002 stick xor
ユーザー mlpj56dmlpj56d
提出日時 2018-05-25 23:29:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 5 ms / 1,000 ms
コード長 1,016 bytes
コンパイル時間 1,508 ms
実行使用メモリ 1,504 KB
スコア -23
最終ジャッジ日時 2018-05-25 23:29:15
ジャッジサーバーID
(参考情報)
judge9 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
1,500 KB
testcase_01 AC 4 ms
1,500 KB
testcase_02 AC 4 ms
1,500 KB
testcase_03 AC 5 ms
1,500 KB
testcase_04 AC 4 ms
1,504 KB
testcase_05 AC 4 ms
1,504 KB
testcase_06 AC 5 ms
1,504 KB
testcase_07 AC 4 ms
1,500 KB
testcase_08 AC 4 ms
1,504 KB
testcase_09 AC 4 ms
1,504 KB
testcase_10 AC 4 ms
1,500 KB
testcase_11 AC 4 ms
1,500 KB
testcase_12 AC 4 ms
1,504 KB
testcase_13 AC 4 ms
1,504 KB
testcase_14 AC 5 ms
1,500 KB
testcase_15 AC 5 ms
1,504 KB
testcase_16 AC 4 ms
1,500 KB
testcase_17 AC 4 ms
1,500 KB
testcase_18 AC 4 ms
1,500 KB
testcase_19 AC 4 ms
1,504 KB
testcase_20 AC 4 ms
1,504 KB
testcase_21 AC 4 ms
1,504 KB
testcase_22 AC 4 ms
1,500 KB
testcase_23 AC 4 ms
1,500 KB
testcase_24 AC 4 ms
1,500 KB
testcase_25 AC 4 ms
1,500 KB
testcase_26 AC 4 ms
1,504 KB
testcase_27 AC 4 ms
1,500 KB
testcase_28 AC 4 ms
1,500 KB
testcase_29 AC 4 ms
1,500 KB
testcase_30 AC 4 ms
1,504 KB
testcase_31 AC 5 ms
1,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<iostream>
using namespace std;

int N,K;
int d[60][60];
int main (){
    cin >> N >> K;
    int L[K];
    int dark = 0;
    for(int i=0; i<K; i++){
        cin >> L[i];
    }
    for(int i=0; i<N; i++){
        for(int j=0; j<N; j++){
            char a;
            cin >> a;
            a = a - '0';
            d[i][j] = a;
            if( a == 1) dark++;
        }
    }
    int chunibyou = 0;
    for(int i=0; i<K; i++){
        int y1,y2,x1,x2;
        for(int j=0; j<N; j++){
            chunibyou += dark;
            if( j % 2 == 0 ){
                y1 = 1;
                y2 = L[i];
                x1 = chunibyou % N + 1;
                x2 = chunibyou % N + 1;
            } else {
                y1 = chunibyou % N + 1;
                y2 = chunibyou % N + 1;
                x1 = L[i];
                x2 = 1;
            }
        }
        if( y1 == y2 || x1 == x2){
            cout << y1 << " " << x1 << " " << y2 << " " << x2 << endl;
        }
    }
    return 0;
}
0