結果

問題 No.2432 Flip and Move
ユーザー cho435cho435
提出日時 2023-08-21 23:07:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 4,669 ms
コンパイル使用メモリ 262,544 KB
実行使用メモリ 57,984 KB
最終ジャッジ日時 2024-05-09 05:03:34
合計ジャッジ時間 9,073 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 32 ms
11,136 KB
testcase_03 AC 154 ms
57,984 KB
testcase_04 AC 37 ms
7,552 KB
testcase_05 AC 19 ms
7,424 KB
testcase_06 AC 25 ms
6,400 KB
testcase_07 AC 110 ms
38,784 KB
testcase_08 AC 98 ms
41,984 KB
testcase_09 AC 139 ms
56,064 KB
testcase_10 AC 21 ms
8,192 KB
testcase_11 AC 31 ms
8,960 KB
testcase_12 AC 19 ms
7,552 KB
testcase_13 AC 17 ms
7,424 KB
testcase_14 AC 40 ms
15,488 KB
testcase_15 AC 113 ms
48,256 KB
testcase_16 AC 20 ms
5,376 KB
testcase_17 AC 50 ms
7,040 KB
testcase_18 AC 13 ms
5,376 KB
testcase_19 AC 25 ms
6,272 KB
testcase_20 AC 56 ms
7,376 KB
testcase_21 AC 34 ms
6,016 KB
testcase_22 AC 39 ms
6,400 KB
testcase_23 AC 10 ms
5,376 KB
testcase_24 AC 46 ms
6,912 KB
testcase_25 AC 34 ms
6,144 KB
testcase_26 AC 32 ms
6,740 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 3 ms
5,376 KB
testcase_29 AC 32 ms
5,760 KB
testcase_30 AC 23 ms
7,296 KB
testcase_31 AC 41 ms
6,272 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 24 ms
7,040 KB
testcase_34 AC 20 ms
5,376 KB
testcase_35 AC 22 ms
6,016 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 2 ms
5,376 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