結果

問題 No.2797 Square Tile
ユーザー shobonvipshobonvip
提出日時 2024-06-27 00:09:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 78,488 KB
最終ジャッジ日時 2024-06-27 00:09:15
合計ジャッジ時間 3,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,464 KB
testcase_01 AC 40 ms
52,800 KB
testcase_02 AC 38 ms
53,284 KB
testcase_03 AC 37 ms
52,276 KB
testcase_04 AC 94 ms
78,488 KB
testcase_05 AC 100 ms
77,692 KB
testcase_06 AC 93 ms
77,440 KB
testcase_07 AC 42 ms
52,992 KB
testcase_08 AC 86 ms
76,800 KB
testcase_09 AC 90 ms
77,440 KB
testcase_10 AC 95 ms
77,696 KB
testcase_11 AC 91 ms
77,008 KB
testcase_12 AC 93 ms
76,796 KB
testcase_13 AC 84 ms
77,056 KB
testcase_14 AC 92 ms
77,184 KB
testcase_15 AC 90 ms
77,152 KB
testcase_16 AC 90 ms
76,672 KB
testcase_17 AC 84 ms
76,544 KB
testcase_18 AC 79 ms
74,496 KB
testcase_19 AC 90 ms
76,928 KB
testcase_20 AC 88 ms
76,928 KB
testcase_21 AC 96 ms
77,312 KB
testcase_22 AC 86 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a, b = map(int,input().split())
n = a * a + b * b
g = math.gcd(a, b)
x = 0
y = 0
a_list = []
b_list = []
mode = 0
for f  in range(g):
	for t in range(n//g*2):
		if mode == 0:
			a_list.append((x, y))
			x += a
			x %= n
		else:
			b_list.append((x, y))
			y += b
			y %= n
		mode ^= 1
	if mode == 0:
		x -= b
		x %= n
		y += a
		y %= n

for x, y in a_list:
	print(x, y)

for x, y in b_list:
	print(x, y)
0