結果

問題 No.2525 Great Move
ユーザー IDA-Keito
提出日時 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
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
}
0