結果

問題 No.401 数字の渦巻き
ユーザー ku_material_roku_material_ro
提出日時 2016-09-26 01:55:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,088 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 62,860 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-11 21:10:40
合計ジャッジ時間 1,740 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 2 ms
4,376 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 2 ms
4,380 KB
testcase_29 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <math.h>
using namespace std;

int main(){
	string s;
	int map[100][100] = {0};
	string ans[100][100];
	int n; cin >> n;
	int vx[4] = { 1,0, -1, 0 };
	int vy[4] = { 0,1, 0, -1 };
	int x = 0;
	int y = 0;
	int i = 1;
	int d = 0;
	while (i<=n*n){
		//cout << d <<"d"<< endl;
		//cout << x << "x" << endl;
		//cout << y << endl;
		map[x][y] = i;
		//cout << x << "x" << endl;
		//cout << y << "y" << endl;
		//cout << map[x + vx[d]][y + vy[d]] << "map[x + vx[d]][y + vy[d]]" << endl;

		if (x + vx[d] == n || y + vy[d] == n || x + vx[d] == -1 || y + vy[d] == -1 || map[x + vx[d]][y + vy[d]] != 0){
			d += 1;
			if (d == 4){
				d = 0;
			}
		}
		//cout << d << "d" << endl;
		x += vx[d];
		y += vy[d];
		i++;
		
	}
	for (int i = 0; i < n; i++){
		for (int i1 = 0; i1 < n-1; i1++){
			s = to_string(map[i1][i]);
			string s1((3 - s.length()), '0');
			ans[i1][i] = s1 + s;
			cout << ans[i1][i] << " ";
		}
		s = to_string(map[n-1][i]);
		string s1((3 - s.length()), '0');
		ans[n-1][i] = s1 + s;
		cout << ans[n - 1][i] << endl;
	}
	return 0;
}
0