結果
問題 |
No.2525 Great Move
|
ユーザー |
|
提出日時 | 2024-06-24 21:32:13 |
言語 | Go (1.23.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 228 bytes |
コンパイル時間 | 14,386 ms |
コンパイル使用メモリ | 235,016 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-24 21:32:31 |
合計ジャッジ時間 | 16,354 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 WA * 9 |
ソースコード
// 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") } }