結果

問題 No.2797 Square Tile
ユーザー tassei903tassei903
提出日時 2024-06-28 22:58:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 847,928 KB
最終ジャッジ日時 2024-06-28 22:58:34
合計ジャッジ時間 2,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 WA -
testcase_04 MLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
111
111
111
00111
00111
00111


11
11
 11
 11

"""

a, b = map(int, input().split())
N = a**2 + b**2
s = [[0] * (N) for i in range(N)]
ans = []
from math import gcd
g = gcd(a, b)
for i in range(g):
    for j in range(N//g):
        x = (j * b+ b + a * i) % N
        y = (j * a - b * i) % N
        ans.append((x, y))

for i in range(g):
    for j in range(N//g):
        x = (j * b+ a * i) % N
        y = (j * a - b*i) % N
        ans.append((x, y))
# s = [[0] * (N) for i in range(N)]
# for i in range(N):
#     x,y = ans[i]
#     for dx in range(a):
#         for dy in range(a):
#             assert s[(x+dx)%N][(y+dy)%N] == 0
#             s[(x+dx)%N][(y+dy)%N] = 1
# assert len(ans) == 2 * N
# for i in range(N):
#     x,y = ans[i+N]
#     for dx in range(b):
#         for dy in range(b):
#             assert s[(x+dx)%N][(y+dy)%N] == 0
#             s[(x+dx)%N][(y+dy)%N] = 1
                

for i, j in ans[::-1]:
    print(i, j)
0