結果

問題 No.2525 Great Move
ユーザー KoiKoi
提出日時 2023-11-03 21:22:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 72,732 KB
最終ジャッジ日時 2023-11-03 21:22:45
合計ジャッジ時間 2,617 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
72,484 KB
testcase_01 AC 61 ms
72,484 KB
testcase_02 WA -
testcase_03 AC 85 ms
72,512 KB
testcase_04 WA -
testcase_05 AC 31 ms
53,620 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 31 ms
53,620 KB
testcase_09 WA -
testcase_10 AC 56 ms
71,956 KB
testcase_11 AC 37 ms
65,908 KB
testcase_12 WA -
testcase_13 AC 72 ms
71,888 KB
testcase_14 WA -
testcase_15 AC 65 ms
71,992 KB
testcase_16 AC 57 ms
72,060 KB
testcase_17 AC 34 ms
57,716 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 31 ms
53,620 KB
testcase_21 WA -
testcase_22 AC 30 ms
53,620 KB
testcase_23 AC 30 ms
53,620 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 30 ms
53,620 KB
testcase_27 WA -
testcase_28 AC 36 ms
53,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(0)
H,S=map(int,input().split())
if((H-S)%2==0):
    print("Possible")
else:
    print("Inpossible")
0