結果

問題 No.2797 Square Tile
ユーザー 👑 potato167potato167
提出日時 2024-06-19 04:42:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 2,536 ms
コンパイル使用メモリ 209,644 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-19 04:42:05
合計ジャッジ時間 4,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 15 ms
6,940 KB
testcase_05 AC 14 ms
6,940 KB
testcase_06 AC 8 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 6 ms
6,940 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 6 ms
6,944 KB
testcase_21 AC 11 ms
6,940 KB
testcase_22 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	int A, B;
	cin >> A >> B;
	vector<pair<int, int>> X, Y;
	bool rev = 0;
	if (A > B) swap(A, B), rev = 1;
	int P = 0, Q = 0;
	int L = A * A + B * B;
	set<pair<int, int>> s;
	while (!s.count({P, Q})){
		while (!s.count({P, Q})){
			s.insert({P, Q});
			X.push_back({P, Q});
			Y.push_back({(P + A) % L, Q});
			P = (P + L - B) % L;
			Q = (Q + A) % L;
		}
		P = (P + A) % L;
		Q = (Q + B) % L;
	}
	if (rev) swap(X, Y);
	for (auto x : X) cout << x.first << " " << x.second << "\n";
	for (auto y : Y) cout << y.first << " " << y.second << "\n";
}
0