結果

問題 No.2525 Great Move
ユーザー titiatitia
提出日時 2023-11-03 21:28:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 11,600 KB
実行使用メモリ 10,528 KB
最終ジャッジ日時 2023-11-03 21:32:25
合計ジャッジ時間 5,324 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 427 ms
10,528 KB
testcase_01 AC 406 ms
10,528 KB
testcase_02 AC 407 ms
10,528 KB
testcase_03 AC 431 ms
10,528 KB
testcase_04 AC 424 ms
10,528 KB
testcase_05 AC 25 ms
9,912 KB
testcase_06 AC 24 ms
9,912 KB
testcase_07 AC 24 ms
9,916 KB
testcase_08 AC 25 ms
9,924 KB
testcase_09 AC 23 ms
9,900 KB
testcase_10 AC 183 ms
10,236 KB
testcase_11 AC 56 ms
9,996 KB
testcase_12 AC 78 ms
10,016 KB
testcase_13 AC 195 ms
10,256 KB
testcase_14 AC 243 ms
10,320 KB
testcase_15 AC 235 ms
10,184 KB
testcase_16 AC 191 ms
10,204 KB
testcase_17 AC 33 ms
9,984 KB
testcase_18 AC 61 ms
10,016 KB
testcase_19 AC 59 ms
10,012 KB
testcase_20 AC 25 ms
9,892 KB
testcase_21 AC 25 ms
9,892 KB
testcase_22 AC 25 ms
9,892 KB
testcase_23 AC 25 ms
9,892 KB
testcase_24 AC 25 ms
9,892 KB
testcase_25 AC 24 ms
9,892 KB
testcase_26 AC 25 ms
9,892 KB
testcase_27 AC 26 ms
9,892 KB
testcase_28 AC 27 ms
9,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.set_int_max_str_digits(10**6)

H,S=map(int,input().split())

if (H-S)%2==0:
    print("Possible")
else:
    print("Impossible")
0