結果

問題 No.2597 Yet Another Topological Problem
ユーザー 👑 rin204rin204
提出日時 2023-12-25 22:09:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 674 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-09-27 14:43:51
合計ジャッジ時間 22,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 149 ms
90,628 KB
testcase_02 AC 152 ms
90,520 KB
testcase_03 AC 37 ms
53,756 KB
testcase_04 AC 36 ms
53,648 KB
testcase_05 AC 148 ms
90,548 KB
testcase_06 AC 35 ms
52,768 KB
testcase_07 AC 141 ms
90,800 KB
testcase_08 WA -
testcase_09 AC 154 ms
90,408 KB
testcase_10 AC 36 ms
52,336 KB
testcase_11 AC 143 ms
90,264 KB
testcase_12 AC 144 ms
90,668 KB
testcase_13 WA -
testcase_14 AC 143 ms
90,264 KB
testcase_15 AC 35 ms
52,980 KB
testcase_16 AC 143 ms
90,404 KB
testcase_17 AC 147 ms
90,516 KB
testcase_18 AC 37 ms
52,808 KB
testcase_19 AC 146 ms
90,676 KB
testcase_20 WA -
testcase_21 AC 143 ms
90,660 KB
testcase_22 AC 137 ms
90,388 KB
testcase_23 WA -
testcase_24 AC 37 ms
53,292 KB
testcase_25 AC 35 ms
52,120 KB
testcase_26 AC 36 ms
52,500 KB
testcase_27 AC 36 ms
53,028 KB
testcase_28 AC 35 ms
53,080 KB
testcase_29 AC 39 ms
52,208 KB
testcase_30 AC 36 ms
52,372 KB
testcase_31 AC 35 ms
52,564 KB
testcase_32 AC 36 ms
52,428 KB
testcase_33 AC 146 ms
90,804 KB
testcase_34 AC 148 ms
90,776 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 138 ms
90,448 KB
testcase_38 AC 141 ms
90,524 KB
testcase_39 AC 142 ms
90,264 KB
testcase_40 AC 143 ms
90,900 KB
testcase_41 WA -
testcase_42 AC 153 ms
90,772 KB
testcase_43 AC 156 ms
90,292 KB
testcase_44 AC 154 ms
90,388 KB
testcase_45 AC 146 ms
90,652 KB
testcase_46 AC 150 ms
90,524 KB
testcase_47 AC 142 ms
90,388 KB
testcase_48 AC 144 ms
90,284 KB
testcase_49 AC 146 ms
90,656 KB
testcase_50 AC 145 ms
90,420 KB
testcase_51 AC 146 ms
90,264 KB
testcase_52 AC 152 ms
90,544 KB
testcase_53 AC 157 ms
90,392 KB
testcase_54 AC 157 ms
90,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q = map(int, input().split())

if p == 1:
    print("Impossible")
    exit()

d = q // p
tot = d * (d + 1)
x = 240000 // tot
S = []
ud = "U"
rev = {"U": "D", "D": "U"}
for i in range(d, 0, -1):
    S.append(ud * i)
    S.append("R" * x * i)
    ud = rev[ud]
    S.append(ud * i)
for i in range(1, d + 1):
    S.append(ud * i)
    S.append("R" * x * i)
    ud = rev[ud]
    S.append(ud * i)

S = "".join(S)
x, y = 0, 0
XY = [(x, y)]
for s in S:
    if s == "U":
        y += 1
    elif s == "D":
        y -= 1
    elif s == "R":
        x += 1
    elif s == "L":
        x -= 1
    XY.append((x, y))


print("Possible")
print(len(XY) - 1)
for x, y in XY:
    print(x, y)
0