結果
| 問題 | No.2525 Great Move |
| コンテスト | |
| ユーザー |
player
|
| 提出日時 | 2023-12-24 18:31:20 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 61 ms / 2,000 ms |
| + 817µs | |
| コード長 | 120 bytes |
| 記録 | |
| コンパイル時間 | 226 ms |
| コンパイル使用メモリ | 96,460 KB |
| 実行使用メモリ | 79,948 KB |
| 最終ジャッジ日時 | 2026-09-05 06:42:12 |
| 合計ジャッジ時間 | 4,012 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
h,s = input().split()
hl,sl = int(h[-1]),int(s[-1])
if hl%2 == sl%2:
print("Possible")
else:
print("Impossible")
player