結果
| 問題 |
No.2525 Great Move
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-03 22:02:04 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 45 ms / 2,000 ms |
| コード長 | 175 bytes |
| コンパイル時間 | 159 ms |
| コンパイル使用メモリ | 82,272 KB |
| 実行使用メモリ | 55,760 KB |
| 最終ジャッジ日時 | 2024-09-25 20:21:03 |
| 合計ジャッジ時間 | 2,317 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
import sys
input = sys.stdin.readline
H, S = input().split()
yes = "Possible"
no = "Impossible"
h = int(H[-1])
s = int(S[-1])
if (h+s)%2==0:
print(yes)
else:
print(no)