結果

問題 No.2525 Great Move
ユーザー IDA-KeitoIDA-Keito
提出日時 2023-11-20 21:56:00
言語 Swift
(5.10.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 1,482 ms
コンパイル使用メモリ 125,204 KB
実行使用メモリ 9,712 KB
最終ジャッジ日時 2024-09-26 06:44:08
合計ジャッジ時間 2,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
9,580 KB
testcase_01 AC 31 ms
9,584 KB
testcase_02 AC 30 ms
9,712 KB
testcase_03 AC 30 ms
9,704 KB
testcase_04 AC 31 ms
9,584 KB
testcase_05 AC 8 ms
8,960 KB
testcase_06 AC 8 ms
9,088 KB
testcase_07 AC 8 ms
9,088 KB
testcase_08 AC 8 ms
8,960 KB
testcase_09 AC 8 ms
9,088 KB
testcase_10 AC 24 ms
9,440 KB
testcase_11 AC 13 ms
9,216 KB
testcase_12 AC 18 ms
9,216 KB
testcase_13 AC 25 ms
9,448 KB
testcase_14 AC 26 ms
9,480 KB
testcase_15 AC 24 ms
9,476 KB
testcase_16 AC 22 ms
9,416 KB
testcase_17 AC 11 ms
9,088 KB
testcase_18 AC 14 ms
9,216 KB
testcase_19 AC 15 ms
9,344 KB
testcase_20 AC 8 ms
8,960 KB
testcase_21 AC 8 ms
9,088 KB
testcase_22 AC 7 ms
9,088 KB
testcase_23 AC 8 ms
8,960 KB
testcase_24 AC 7 ms
9,088 KB
testcase_25 AC 7 ms
9,088 KB
testcase_26 AC 9 ms
9,088 KB
testcase_27 AC 7 ms
8,960 KB
testcase_28 AC 8 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let splitInput = readLine()!.split(separator: " ")

// leastSignificantDigit
let lsdForH = Int(String(splitInput[0].last!))!
let lsdForS = Int(String(splitInput[1].last!))!

if (lsdForH - lsdForS) % 2 == 0 {
	print("Possible")
} else {
	print("Impossible")
}
0