結果
問題 |
No.2525 Great Move
|
ユーザー |
|
提出日時 | 2023-11-11 20:24:35 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 110 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 66,688 KB |
最終ジャッジ日時 | 2024-09-26 02:51:58 |
合計ジャッジ時間 | 2,950 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 26 |
ソースコード
H,S = input() a = int(H[-1]) b = int(S[-1]) if (a - b) % 2 == 0: print('Possible') else: print('Impossible')