結果

問題 No.2597 Yet Another Topological Problem
ユーザー 👑 rin204rin204
提出日時 2023-12-25 21:39:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 67,288 KB
最終ジャッジ日時 2024-09-27 14:41:54
合計ジャッジ時間 9,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 34 ms
52,756 KB
testcase_04 AC 33 ms
52,340 KB
testcase_05 RE -
testcase_06 AC 34 ms
51,964 KB
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 AC 33 ms
52,620 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 RE -
testcase_15 AC 35 ms
54,080 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 34 ms
52,192 KB
testcase_19 RE -
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 RE -
testcase_25 AC 34 ms
52,344 KB
testcase_26 AC 34 ms
51,748 KB
testcase_27 AC 34 ms
51,952 KB
testcase_28 AC 36 ms
52,840 KB
testcase_29 AC 34 ms
52,024 KB
testcase_30 AC 34 ms
52,196 KB
testcase_31 AC 34 ms
52,088 KB
testcase_32 AC 35 ms
52,608 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 WA -
testcase_36 WA -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 WA -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if 3 * p <= q:
    print("Impossible")
    exit()
else:
    assert False
0