結果

問題 No.1201 お菓子配り-4
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-02-15 21:28:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,075 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,220 KB
最終ジャッジ日時 2024-07-18 04:46:41
合計ジャッジ時間 41,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
76,308 KB
testcase_01 AC 3,098 ms
76,348 KB
testcase_02 TLE -
testcase_03 AC 2,169 ms
76,904 KB
testcase_04 AC 1,095 ms
76,692 KB
testcase_05 AC 2,636 ms
76,556 KB
testcase_06 AC 460 ms
76,048 KB
testcase_07 AC 1,229 ms
76,600 KB
testcase_08 AC 3,277 ms
77,220 KB
testcase_09 AC 2,433 ms
76,780 KB
testcase_10 AC 94 ms
76,300 KB
testcase_11 AC 691 ms
76,844 KB
testcase_12 TLE -
testcase_13 AC 207 ms
76,680 KB
testcase_14 AC 139 ms
76,256 KB
testcase_15 AC 3,936 ms
76,452 KB
testcase_16 AC 1,247 ms
76,716 KB
testcase_17 AC 1,592 ms
76,864 KB
testcase_18 AC 321 ms
76,772 KB
testcase_19 AC 306 ms
76,612 KB
testcase_20 AC 39 ms
53,444 KB
testcase_21 AC 38 ms
52,656 KB
testcase_22 AC 38 ms
53,236 KB
testcase_23 AC 39 ms
52,660 KB
testcase_24 AC 40 ms
53,088 KB
testcase_25 AC 39 ms
52,488 KB
testcase_26 AC 40 ms
52,732 KB
testcase_27 AC 39 ms
52,468 KB
testcase_28 AC 40 ms
53,216 KB
testcase_29 AC 39 ms
53,236 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil


def floor_sum_of_linear(L: int, R: int, a: int, b: int, mod: int) -> int:
    """
    ```
    sum((x * a + b) // mod for x in range(L, R))
    ```
    """
    if L >= R:
        return 0
    res = 0
    b += L * a
    n = R - L

    if b < 0:
        k = ceil(-b / mod)
        b += k * mod
        res -= n * k

    while n:
        q, a = a // mod, a % mod
        res = res + n * (n - 1) // 2 * q
        res %= 1 << 128
        if b >= mod:
            q, b = b // mod, b % mod
            res = res + n * q
            res %= 1 << 128
        n, b = (a * n + b) // mod, (a * n + b) % mod
        a, mod = mod, a

    return res


if __name__ == "__main__":
    import sys

    sys.setrecursionlimit(int(1e9))
    input = lambda: sys.stdin.readline().rstrip("\r\n")

    N = int(input())
    M = int(input())
    A = list(map(int, input().split()))
    B = list(map(int, input().split()))
    ans = 0
    for a in A:
        for b in B:
            ans += floor_sum_of_linear(1, b + 1, a, 0, b)
    ans *= 2
    ans %= int(1e9 + 7)
    print(ans)
0