結果

問題 No.2525 Great Move
ユーザー Koi
提出日時 2023-11-03 21:22:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 72,768 KB
最終ジャッジ日時 2024-09-25 18:54:48
合計ジャッジ時間 2,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 14 WA * 12
権限があれば一括ダウンロードができます

ソースコード

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