結果

問題 No.1680 Sum and Difference
コンテスト
ユーザー hogehoge
提出日時 2021-09-17 21:54:02
言語 Python3
(3.14.3 + numpy 2.4.2 + scipy 1.17.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 308 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 407 ms
コンパイル使用メモリ 20,700 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2026-03-19 10:43:29
合計ジャッジ時間 3,353 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

x,y = map(int,input().split())
a = max(x,y)
b = min(x,y)
l = 1000000007
if (a-b)%2==0:
    target1 = ((2*b+1)%l)*((a-b+1)%l)%l
    target2 = ((b%l)**2)%l*2
    ans = (target1+target2)%l
else:
    target1 = ((2*b+1)%l)*((a-b)%l)%l
    target2 = ((b%l)*((b+1)%l))%l*4%l
    ans = (target1+target2)%l
print(ans)
0