結果

問題 No.1680 Sum and Difference
ユーザー neterukunneterukun
提出日時 2021-09-17 21:35:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-06-29 19:57:55
合計ジャッジ時間 1,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,468 KB
testcase_01 AC 37 ms
52,892 KB
testcase_02 AC 36 ms
53,116 KB
testcase_03 AC 37 ms
52,444 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,284 KB
testcase_06 AC 36 ms
52,340 KB
testcase_07 AC 37 ms
52,800 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,452 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 36 ms
52,488 KB
testcase_13 AC 37 ms
53,256 KB
testcase_14 AC 36 ms
52,616 KB
testcase_15 WA -
testcase_16 AC 36 ms
52,112 KB
testcase_17 AC 37 ms
52,604 KB
testcase_18 AC 37 ms
52,212 KB
testcase_19 AC 36 ms
53,172 KB
testcase_20 AC 36 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
MOD = 10 ** 9 + 7


if a <= b:
    ans = (2 * a * (a + 1) + 1) % MOD
    print(ans)
else:
    aa = 2 * (a // 2) + 1
    bb = 2 * ((a + 1) // 2)
    li = [aa, bb]
    ans = li[0] * (2 * ((b + 2) // 2) - 1)
    ans += li[1] * 2 * ((b + 1) // 2)
    ans %= MOD
    print(ans)
0