結果

問題 No.1680 Sum and Difference
ユーザー rlangevinrlangevin
提出日時 2022-12-31 18:55:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 173 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 53,668 KB
最終ジャッジ日時 2024-11-26 17:26:15
合計ジャッジ時間 1,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,836 KB
testcase_01 AC 38 ms
53,308 KB
testcase_02 AC 39 ms
51,824 KB
testcase_03 AC 39 ms
52,276 KB
testcase_04 AC 39 ms
52,700 KB
testcase_05 AC 39 ms
52,952 KB
testcase_06 AC 39 ms
52,280 KB
testcase_07 AC 38 ms
53,168 KB
testcase_08 AC 39 ms
52,432 KB
testcase_09 AC 40 ms
52,804 KB
testcase_10 AC 39 ms
52,644 KB
testcase_11 AC 39 ms
52,524 KB
testcase_12 AC 39 ms
53,212 KB
testcase_13 AC 38 ms
53,668 KB
testcase_14 AC 39 ms
52,340 KB
testcase_15 AC 39 ms
52,140 KB
testcase_16 AC 39 ms
52,968 KB
testcase_17 AC 39 ms
52,904 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 39 ms
52,268 KB
testcase_20 AC 39 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
mod = 10 ** 9 + 7
if B % 2 != A % 2:
    print( ((B + 1) * (A) + (B) * (A + 1))%mod )
else:
    print( ((B) * (A) + (B + 1) * (A + 1))%mod )
0