結果

問題 No.2525 Great Move
コンテスト
ユーザー pluto77
提出日時 2023-12-01 16:02:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 134 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-09-26 15:43:04
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7 RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

h,s=map(int,input().split())
if h%2 and s%2:
 print('Possible')
elif h%2==0 and s%2==0:
 print('Possible')
else:
 print('Impossible')
0