結果

問題 No.2432 Flip and Move
ユーザー cho435cho435
提出日時 2023-08-21 23:07:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 4,832 ms
コンパイル使用メモリ 263,644 KB
実行使用メモリ 58,088 KB
最終ジャッジ日時 2024-12-15 14:44:45
合計ジャッジ時間 8,927 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 29 ms
11,004 KB
testcase_03 AC 137 ms
58,088 KB
testcase_04 AC 34 ms
7,552 KB
testcase_05 AC 17 ms
7,552 KB
testcase_06 AC 23 ms
6,820 KB
testcase_07 AC 101 ms
38,928 KB
testcase_08 AC 88 ms
41,684 KB
testcase_09 AC 129 ms
56,112 KB
testcase_10 AC 19 ms
8,192 KB
testcase_11 AC 28 ms
8,956 KB
testcase_12 AC 18 ms
7,552 KB
testcase_13 AC 16 ms
7,424 KB
testcase_14 AC 36 ms
15,584 KB
testcase_15 AC 100 ms
48,352 KB
testcase_16 AC 18 ms
6,816 KB
testcase_17 AC 49 ms
7,040 KB
testcase_18 AC 14 ms
6,816 KB
testcase_19 AC 25 ms
6,816 KB
testcase_20 AC 53 ms
7,380 KB
testcase_21 AC 31 ms
6,816 KB
testcase_22 AC 40 ms
6,816 KB
testcase_23 AC 11 ms
6,816 KB
testcase_24 AC 44 ms
6,912 KB
testcase_25 AC 32 ms
6,816 KB
testcase_26 AC 30 ms
6,816 KB
testcase_27 AC 4 ms
6,816 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 31 ms
6,820 KB
testcase_30 AC 20 ms
7,296 KB
testcase_31 AC 37 ms
6,816 KB
testcase_32 AC 5 ms
6,816 KB
testcase_33 AC 24 ms
6,912 KB
testcase_34 AC 19 ms
6,820 KB
testcase_35 AC 20 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	int h,w;
	cin>>h>>w;
	ll k;
	cin>>k;
	k%=8*h*w;
	vector<vector<int>> ans(h,vector<int>(w,0));
	auto isok=[&](int i,int j){
		return 0<=i&&i<h&&0<=j&&j<w;
	};
	int nx=0,ny=0;
	int dx=1,dy=1;
	rep(lp,k){
		ans.at(nx).at(ny)^=1;
		if(isok(nx+dx,ny)) nx+=dx;
		else dx*=-1;
		if(isok(nx,ny+dy)) ny+=dy;
		else dy*=-1;
	}
	rep(i,h){
		rep(j,w) cout<<(ans.at(i).at(j)?'#':'.');
		cout<<"\n";
	}
}
0