結果

問題 No.1680 Sum and Difference
ユーザー Eki1009Eki1009
提出日時 2021-09-17 21:35:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,000 ms
コード長 101 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 53,464 KB
最終ジャッジ日時 2024-06-29 19:58:59
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,820 KB
testcase_01 AC 36 ms
52,572 KB
testcase_02 AC 36 ms
52,604 KB
testcase_03 AC 36 ms
52,628 KB
testcase_04 AC 36 ms
52,764 KB
testcase_05 AC 36 ms
52,148 KB
testcase_06 AC 35 ms
51,984 KB
testcase_07 AC 35 ms
52,876 KB
testcase_08 AC 36 ms
51,944 KB
testcase_09 AC 36 ms
52,008 KB
testcase_10 AC 36 ms
53,044 KB
testcase_11 AC 37 ms
52,276 KB
testcase_12 AC 36 ms
52,684 KB
testcase_13 AC 37 ms
52,140 KB
testcase_14 AC 37 ms
52,444 KB
testcase_15 AC 36 ms
53,248 KB
testcase_16 AC 38 ms
52,000 KB
testcase_17 AC 36 ms
52,508 KB
testcase_18 AC 36 ms
52,000 KB
testcase_19 AC 36 ms
52,768 KB
testcase_20 AC 36 ms
53,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
c, d = 1+a//2*2, 1+b//2*2
print((c*d+(2*a+1-c)*(2*b+1-d))%(10**9+7))
0