結果

問題 No.2432 Flip and Move
ユーザー karinohitokarinohito
提出日時 2024-09-17 00:23:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,208 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 2,006 ms
コンパイル使用メモリ 206,892 KB
実行使用メモリ 73,516 KB
最終ジャッジ日時 2024-09-17 00:24:03
合計ジャッジ時間 10,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 25 ms
6,940 KB
testcase_03 AC 1,208 ms
73,516 KB
testcase_04 AC 37 ms
6,944 KB
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 26 ms
6,940 KB
testcase_07 AC 769 ms
48,792 KB
testcase_08 AC 842 ms
52,552 KB
testcase_09 AC 1,096 ms
70,888 KB
testcase_10 AC 17 ms
6,940 KB
testcase_11 AC 31 ms
6,940 KB
testcase_12 AC 15 ms
6,944 KB
testcase_13 AC 11 ms
6,940 KB
testcase_14 AC 266 ms
18,860 KB
testcase_15 AC 969 ms
61,104 KB
testcase_16 AC 17 ms
6,944 KB
testcase_17 AC 44 ms
6,940 KB
testcase_18 AC 19 ms
6,944 KB
testcase_19 AC 26 ms
6,940 KB
testcase_20 AC 54 ms
6,944 KB
testcase_21 AC 27 ms
6,940 KB
testcase_22 AC 31 ms
6,944 KB
testcase_23 AC 22 ms
6,944 KB
testcase_24 AC 38 ms
6,944 KB
testcase_25 AC 33 ms
6,944 KB
testcase_26 AC 33 ms
6,940 KB
testcase_27 AC 4 ms
6,940 KB
testcase_28 AC 4 ms
6,940 KB
testcase_29 AC 26 ms
6,940 KB
testcase_30 AC 20 ms
6,940 KB
testcase_31 AC 32 ms
6,944 KB
testcase_32 AC 5 ms
6,944 KB
testcase_33 AC 17 ms
6,944 KB
testcase_34 AC 17 ms
6,944 KB
testcase_35 AC 18 ms
6,940 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(ll i=0;i<n;i++)
using ll = long long;

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int H,W;
    ll K;
    cin>>H>>W>>K;
    K%=8*H*W;
    int y=0,x=0;
    int dy=1,dx=1;
    vector<vector<bool>> AN(H,vector<bool>(W,0));
    for(int k=0;k<K;k++){
        AN[y][x]=!AN[y][x];
        int ny=dy+y;
        int nx=dx+x;
        if(ny<0||ny>=H)dy*=-1;
        else y=ny;
        if(nx<0||nx>=W)dx*=-1;
        else x=nx;
    }
    for(int h=0;h<H;h++){
        for(int w=0;w<W;w++)cout<<".#"[AN[h][w]];
        cout<<endl;
    }
}
0