結果

問題 No.2799 Cut and Eat
ユーザー tassei903tassei903
提出日時 2024-06-28 22:57:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 932 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 848,024 KB
最終ジャッジ日時 2024-06-28 22:57:32
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 MLE -
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 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

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