結果
問題 | No.1680 Sum and Difference |
ユーザー | kiyoshiro944 |
提出日時 | 2021-09-30 19:03:42 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 718 bytes |
コンパイル時間 | 13,908 ms |
コンパイル使用メモリ | 222,548 KB |
実行使用メモリ | 14,908 KB |
最終ジャッジ日時 | 2024-07-17 23:23:45 |
合計ジャッジ時間 | 15,737 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
package main import ( "fmt" ) func main() { var a, b int fmt.Scan(&a, &b) // -A ≤ x + y ≤ A // -B ≤ x - y ≤ B // --------------- // - (A+B) ≤ 2x ≤ A+B // - (A+B) / 2 ≤ x ≤ (A+B)/2 // -A ≤ x + y ≤ A // -B ≤ y - x ≤ B // --------------- // - (A+B) ≤ 2y ≤ A+B // - (A+B) / 2 ≤ y ≤ (A+B)/2 // したがって、xとyの範囲が求まる var to int to = (a + b) / 2 result := 0 for x := 0; x <= to; x++ { for y := 0; y <= to; y++ { if -a <= x+y && x+y <= a && -b <= x-y && x-y <= b { fmt.Println(x, y) result += 1 } } } // 反転したもの(x2)、0, 0が重複するのを考慮する(-1) ans := (result*2 - 1) % 1000000007 fmt.Println(ans) }