結果
問題 | No.2797 Square Tile |
ユーザー | pitP |
提出日時 | 2024-06-28 23:04:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 698 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 678,912 KB |
最終ジャッジ日時 | 2024-06-28 23:04:32 |
合計ジャッジ時間 | 3,895 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,472 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | WA | - |
testcase_03 | AC | 39 ms
51,712 KB |
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 | -- | - |
ソースコード
A, B = map(int, input().split()) L = A ** 2 + B ** 2 ifSwap = 0 if A < B: A, B = B, A ifSwap = 1 grid = [["" for _ in range(L)] for _ in range(L)] xy = [] for i in range(L): i0 = A * i % L j0 = B * i % L xy.append([i0, j0]) for r in range(A): for c in range(A): grid[(i0 + r) % L][(j0 + c) % L] = 'o' for i in range(L): i0 = (A * i + A) % L j0 = B * i % L xy.append([i0, j0]) for r in range(B): for c in range(B): grid[(i0 + r) % L][(j0 + c) % L] = 'x' for i in range(2 * L): if ifSwap: print(*xy[(i + L) % (2 * L)]) else: print(*xy[i]) # for i in range(L): # print("".join(grid[i]))