結果
| 問題 |
No.2525 Great Move
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-20 21:47:50 |
| 言語 | Swift (6.0.3) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 180 bytes |
| コンパイル時間 | 3,815 ms |
| コンパイル使用メモリ | 126,860 KB |
| 実行使用メモリ | 9,588 KB |
| 最終ジャッジ日時 | 2024-09-26 06:43:44 |
| 合計ジャッジ時間 | 5,157 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 WA * 9 |
ソースコード
let splitInput = readLine()!.split(separator: " ")
let h = Int(splitInput[0])!
let s = Int(splitInput[1])!
if (h - s) % 2 == 0 {
print("Possible")
} else {
print("Impossible")
}