結果
| 問題 |
No.2525 Great Move
|
| コンテスト | |
| ユーザー |
detteiuu
|
| 提出日時 | 2024-10-25 23:35:52 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 100 bytes |
| コンパイル時間 | 503 ms |
| コンパイル使用メモリ | 82,464 KB |
| 実行使用メモリ | 68,760 KB |
| 最終ジャッジ日時 | 2024-10-25 23:35:56 |
| 合計ジャッジ時間 | 3,531 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 RE * 19 |
ソースコード
H, S = map(int, input().split())
if H%2 == S%2:
print("Possible")
else:
print("Impossible")
detteiuu