結果

問題 No.2525 Great Move
ユーザー ゆうPゆうP
提出日時 2024-06-24 21:32:13
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 14,386 ms
コンパイル使用メモリ 235,016 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 21:32:31
合計ジャッジ時間 16,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
6,812 KB
testcase_01 AC 196 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 200 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 8 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 10 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 87 ms
6,944 KB
testcase_11 AC 77 ms
6,944 KB
testcase_12 WA -
testcase_13 AC 101 ms
6,944 KB
testcase_14 WA -
testcase_15 AC 107 ms
6,940 KB
testcase_16 AC 52 ms
6,940 KB
testcase_17 AC 16 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.2525 Great Move
package main

import (
	"fmt"
	"math"
)

func main() {
	var h, s float64
	fmt.Scan(&h, &s)
	if (int64(math.Abs(h)+math.Abs(s)))%2 == 0 {
		fmt.Println("Possible")
	} else {
		fmt.Println("Impossible")
	}
}
0