結果

問題 No.1680 Sum and Difference
ユーザー hitonanodehitonanode
提出日時 2021-08-08 15:15:27
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 425 bytes
コンパイル時間 1,880 ms
コンパイル使用メモリ 118,900 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 19:23:34
合計ジャッジ時間 15,338 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 739 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 94 ms
6,944 KB
testcase_07 AC 732 ms
6,940 KB
testcase_08 AC 759 ms
6,940 KB
testcase_09 AC 753 ms
6,944 KB
testcase_10 AC 172 ms
6,940 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 612 ms
6,940 KB
testcase_14 AC 887 ms
6,944 KB
testcase_15 AC 41 ms
6,940 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 643 ms
6,944 KB
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
using lint = long long;


constexpr unsigned md = 1000000007;
int main() {
    long long A, B;
    cin >> A >> B;
    A %= (md * 2);
    B %= (md * 2);
    unsigned long long ret = 0;
    for (int sum = -A; sum <= A; sum++) {
        if (sum & 1) {
            ret += (B + 1) / 2 * 2;
        } else {
            ret += 1 + B / 2 * 2;
        }
    }
    cout << ret % md << '\n';
}
0