結果

問題 No.1680 Sum and Difference
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-09-17 22:05:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 569 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 53,596 KB
最終ジャッジ日時 2024-06-29 20:38:08
合計ジャッジ時間 1,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,268 KB
testcase_01 AC 39 ms
52,356 KB
testcase_02 AC 37 ms
52,828 KB
testcase_03 AC 37 ms
52,236 KB
testcase_04 AC 37 ms
52,984 KB
testcase_05 AC 37 ms
51,868 KB
testcase_06 AC 36 ms
52,624 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 37 ms
52,672 KB
testcase_09 AC 36 ms
53,444 KB
testcase_10 AC 37 ms
52,268 KB
testcase_11 AC 38 ms
53,364 KB
testcase_12 AC 36 ms
52,824 KB
testcase_13 AC 37 ms
52,164 KB
testcase_14 AC 37 ms
52,124 KB
testcase_15 AC 38 ms
53,428 KB
testcase_16 AC 37 ms
52,336 KB
testcase_17 AC 35 ms
53,596 KB
testcase_18 AC 37 ms
52,512 KB
testcase_19 AC 38 ms
52,436 KB
testcase_20 AC 37 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())
mod = 10**9+7
if a*b == 0:
    if a%2 or b%2:
        print((a+b)%mod)
    else:
        print((a+b+1)%mod)
    exit()
if a > b:
    a,b = b,a
if a%2 == b%2:
    l = (a-b)//2
    r = (b-a)//2
    ans = (r-l+1)*(2*a+1)%mod

    ans += (2*a)*((2*a+1)//2)%mod

else:
    if a%2:
        l = (a-b+1)//2
        r = (b-a-1)//2
        ans = (r-l+1)*(2*a+1)%mod
        ans += (2*a+2)*(a)%mod      
    else:
        l = (a-b+1)//2
        r = (b-a-1)//2
        ans = (r-l+1)*(2*a+1)%mod
        ans += (2*a+2)*(a)%mod
        

print(ans%mod)
0