結果
問題 | No.565 回転拡大 |
ユーザー | SugarDragon5 |
提出日時 | 2017-09-08 22:44:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,274 bytes |
コンパイル時間 | 1,882 ms |
コンパイル使用メモリ | 173,768 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 06:28:21 |
合計ジャッジ時間 | 2,888 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define vi vector<int> #define pb push_back #define P pair<int,int> #define PP pair<P,int> #define fi first #define se second #define INF 1e9 #define MOD 1000000007 int main(){ int r,k; cin>>r>>k; int h,w; cin>>h>>w; vector<string> vec; for(int i=0;i<h;i++){ string t; cin>>t; vec.pb(t); } vector<string> ans; if(r==0){ ans=vec; }else if(r==90){ for(int i=0;i<w;i++){ string t; for(int j=h-1;j>=0;j--){ t+=vec[j][i]; } ans.pb(t); } }else if(r==180){ for(int i=w-1;i>=0;i--){ string t; for(int j=h-1;j>=0;j--){ t+=vec[j][i]; } ans.pb(t); } }else if(r==270){ for(int i=w-1;i>=0;i--){ string t; for(int j=0;j<h;j++){ t+=vec[j][i]; } ans.pb(t); } } for(int i=0;i<ans.size();i++){ for(int m=0;m<k;m++){ for(int j=0;j<ans[i].size();j++){ for(int l=0;l<k;l++){ cout<<ans[i][j]; } }cout<<endl; } } return 0; }