結果

問題 No.2525 Great Move
ユーザー siro53siro53
提出日時 2023-11-03 21:26:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 72,704 KB
最終ジャッジ日時 2023-11-03 21:26:20
合計ジャッジ時間 2,775 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
72,452 KB
testcase_01 AC 60 ms
72,460 KB
testcase_02 AC 82 ms
72,424 KB
testcase_03 AC 83 ms
72,476 KB
testcase_04 AC 95 ms
72,704 KB
testcase_05 AC 32 ms
53,592 KB
testcase_06 AC 29 ms
53,592 KB
testcase_07 AC 29 ms
53,592 KB
testcase_08 AC 29 ms
53,592 KB
testcase_09 AC 29 ms
53,592 KB
testcase_10 AC 56 ms
71,924 KB
testcase_11 AC 41 ms
65,880 KB
testcase_12 AC 48 ms
71,492 KB
testcase_13 AC 62 ms
71,868 KB
testcase_14 AC 68 ms
71,976 KB
testcase_15 AC 66 ms
71,960 KB
testcase_16 AC 58 ms
72,032 KB
testcase_17 AC 36 ms
57,688 KB
testcase_18 AC 40 ms
65,880 KB
testcase_19 AC 40 ms
67,928 KB
testcase_20 AC 32 ms
53,592 KB
testcase_21 AC 32 ms
53,592 KB
testcase_22 AC 33 ms
53,592 KB
testcase_23 AC 34 ms
53,592 KB
testcase_24 AC 33 ms
53,592 KB
testcase_25 AC 32 ms
53,592 KB
testcase_26 AC 30 ms
53,592 KB
testcase_27 AC 29 ms
53,592 KB
testcase_28 AC 29 ms
53,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.set_int_max_str_digits(10**6)


H, S = map(int, input().split())
print('Possible' if abs(H - S) % 2 == 0 else 'Impossible')
0