結果

問題 No.565 回転拡大
ユーザー gigimegigime
提出日時 2017-09-08 22:33:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 171,668 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 06:18:59
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define FOR(i,l,r) for(int i = int(l);i < int(r);i++)
template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; }
template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; }
typedef long long ll;

int R,K,H,W;
vector<string> S;

int main()
{
	scanf("%d%d%d%d",&R,&K,&H,&W);
	FOR(i,0,H){
		string t;
		cin >> t;
		FOR(j,0,K){
			S.push_back("");
			FOR(k,0,W){
				S.back() += string(K,t [k]);
			}
		}
	}

	if(R == 0){
		FOR(i,0,H * K){
			cout << S [i] << endl;
		}
	}
	else if(R == 90){
		FOR(i,0,W * K) for(int j = H * K - 1;j >= 0;j--){
			cout << S [j] [i] << (j == 0 ? "\n" : "");
		}
	}
	else if(R == 180){
		for(int i = H * K - 1;i >= 0;i--) for(int j = W * K - 1;j >= 0;j--){
			cout << S [i] [j] << (j == 0 ? "\n" : "");
		}
	}
	else{
		for(int i = W * K - 1;i >= 0;i--) FOR(j,0,H * K){
			cout << S [j] [i] << (j + 1 == H * K ? "\n" : "");
		}
	}

	return 0;
}
0