結果

問題 No.2597 Yet Another Topological Problem
ユーザー KudeKude
提出日時 2023-12-25 08:45:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-09-27 14:14:46
合計ジャッジ時間 4,565 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,672 KB
testcase_01 AC 54 ms
63,916 KB
testcase_02 AC 37 ms
52,416 KB
testcase_03 AC 37 ms
52,004 KB
testcase_04 AC 37 ms
52,816 KB
testcase_05 AC 38 ms
53,660 KB
testcase_06 AC 36 ms
52,544 KB
testcase_07 AC 42 ms
59,468 KB
testcase_08 AC 40 ms
54,252 KB
testcase_09 AC 40 ms
54,784 KB
testcase_10 AC 36 ms
52,620 KB
testcase_11 AC 38 ms
55,068 KB
testcase_12 AC 39 ms
54,672 KB
testcase_13 AC 44 ms
60,976 KB
testcase_14 AC 41 ms
58,976 KB
testcase_15 AC 36 ms
53,656 KB
testcase_16 AC 42 ms
59,240 KB
testcase_17 AC 41 ms
59,404 KB
testcase_18 AC 35 ms
52,288 KB
testcase_19 AC 41 ms
58,948 KB
testcase_20 AC 44 ms
59,860 KB
testcase_21 AC 39 ms
54,292 KB
testcase_22 AC 40 ms
54,796 KB
testcase_23 AC 173 ms
77,952 KB
testcase_24 AC 38 ms
52,140 KB
testcase_25 AC 37 ms
53,228 KB
testcase_26 AC 37 ms
52,608 KB
testcase_27 AC 36 ms
52,600 KB
testcase_28 AC 36 ms
52,016 KB
testcase_29 AC 36 ms
53,220 KB
testcase_30 AC 37 ms
52,688 KB
testcase_31 AC 36 ms
53,000 KB
testcase_32 AC 37 ms
52,676 KB
testcase_33 AC 36 ms
52,356 KB
testcase_34 AC 36 ms
52,236 KB
testcase_35 AC 37 ms
53,432 KB
testcase_36 AC 36 ms
53,096 KB
testcase_37 AC 34 ms
52,556 KB
testcase_38 AC 37 ms
52,316 KB
testcase_39 AC 38 ms
53,480 KB
testcase_40 AC 37 ms
52,336 KB
testcase_41 AC 37 ms
52,704 KB
testcase_42 AC 35 ms
53,104 KB
testcase_43 AC 37 ms
52,412 KB
testcase_44 AC 38 ms
53,356 KB
testcase_45 AC 36 ms
52,416 KB
testcase_46 AC 36 ms
52,076 KB
testcase_47 AC 37 ms
53,940 KB
testcase_48 AC 36 ms
52,272 KB
testcase_49 AC 36 ms
53,620 KB
testcase_50 AC 36 ms
52,208 KB
testcase_51 AC 35 ms
53,956 KB
testcase_52 AC 36 ms
52,360 KB
testcase_53 AC 36 ms
54,180 KB
testcase_54 AC 37 ms
52,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q = map(int, input().split())
if p == 1:
    print('Impossible')
    exit()
print('Possible')
K = q // p
r = q % p
L = max((K * p + r - 1) // r, ((K + 1) * p + p - r - 1) // (p - r))
L = (L + p - 1) // p * p
ln = 2 * K * (K + 1) + L * K + L // p * r
print(ln)
for i in range(K + 1):
    x = i * L
    for dx in range(i):
        print(x + dx, i)
    for y in range(i, -(K - i), -1):
        print(x + i, y)
    if i < K:
        for dx in range(i, L - (i + 1)):
            print(x + dx, -(K - i))
        for y in range(-(K - i), i + 1):
            print(x + L - (i + 1), y)
        for dx in range(L - (i + 1), L):
            print(x + dx, i + 1)
    else:
        for dx in range(i, L * r // p + 1):
            print(x + dx, 0)
0