結果

問題 No.2597 Yet Another Topological Problem
ユーザー 👑 rin204rin204
提出日時 2023-12-25 21:47:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 699 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 90,996 KB
最終ジャッジ日時 2024-09-27 14:42:39
合計ジャッジ時間 20,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 170 ms
90,996 KB
testcase_02 AC 164 ms
90,704 KB
testcase_03 AC 35 ms
52,872 KB
testcase_04 AC 36 ms
52,580 KB
testcase_05 AC 159 ms
90,952 KB
testcase_06 AC 37 ms
52,540 KB
testcase_07 AC 164 ms
90,444 KB
testcase_08 WA -
testcase_09 AC 167 ms
90,692 KB
testcase_10 AC 37 ms
52,412 KB
testcase_11 AC 157 ms
90,592 KB
testcase_12 AC 160 ms
90,824 KB
testcase_13 WA -
testcase_14 AC 163 ms
90,592 KB
testcase_15 AC 36 ms
52,704 KB
testcase_16 AC 158 ms
90,720 KB
testcase_17 AC 161 ms
90,592 KB
testcase_18 AC 37 ms
53,200 KB
testcase_19 AC 162 ms
90,436 KB
testcase_20 WA -
testcase_21 AC 163 ms
90,564 KB
testcase_22 AC 168 ms
90,696 KB
testcase_23 WA -
testcase_24 AC 36 ms
52,916 KB
testcase_25 AC 38 ms
52,820 KB
testcase_26 AC 38 ms
52,756 KB
testcase_27 AC 39 ms
52,068 KB
testcase_28 AC 39 ms
52,644 KB
testcase_29 AC 37 ms
52,856 KB
testcase_30 AC 38 ms
53,092 KB
testcase_31 AC 37 ms
52,560 KB
testcase_32 AC 38 ms
52,952 KB
testcase_33 AC 166 ms
90,588 KB
testcase_34 AC 161 ms
90,984 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 164 ms
90,980 KB
testcase_38 AC 166 ms
90,804 KB
testcase_39 AC 162 ms
90,852 KB
testcase_40 AC 157 ms
90,856 KB
testcase_41 WA -
testcase_42 AC 162 ms
90,436 KB
testcase_43 AC 160 ms
90,568 KB
testcase_44 AC 163 ms
90,968 KB
testcase_45 AC 162 ms
90,700 KB
testcase_46 AC 167 ms
90,608 KB
testcase_47 AC 167 ms
90,572 KB
testcase_48 AC 166 ms
90,576 KB
testcase_49 AC 161 ms
90,844 KB
testcase_50 AC 166 ms
90,840 KB
testcase_51 AC 162 ms
90,580 KB
testcase_52 AC 164 ms
90,456 KB
testcase_53 AC 163 ms
90,704 KB
testcase_54 AC 161 ms
90,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = ""
if 3 * p <= q:
    print("Impossible")
    exit()
elif 2 * p == q:
    print("Impossible")
    exit()
elif 2 * p <= q:
    x = 40000
    S += "U" * 2
    S += "R" * 2 * x
    S += "D" * 3
    S += "R" * x
    S += "U" * 2
    S += "R" * x
    S += "D" * 3
    S += "R" * 2 * x
    S += "U" * 2
else:
    x = 120000
    S += "U"
    S += "R" * x
    S += "D" * 2
    S += "R" * x
    S += "U"

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