結果

問題 No.1680 Sum and Difference
ユーザー neterukunneterukun
提出日時 2021-09-17 21:36:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 304 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-06-29 19:59:07
合計ジャッジ時間 1,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 36 ms
51,840 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 36 ms
51,584 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 RE -
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 36 ms
52,224 KB
testcase_18 AC 36 ms
51,968 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


if a <= b:
    ans = (2 * a * (a + 1) + 1) % MOD
    print(re)
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