結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
76,336 KB
testcase_01 AC 1,859 ms
76,540 KB
testcase_02 AC 2,658 ms
76,968 KB
testcase_03 AC 1,311 ms
76,288 KB
testcase_04 AC 671 ms
76,112 KB
testcase_05 AC 1,618 ms
76,768 KB
testcase_06 AC 291 ms
75,652 KB
testcase_07 AC 749 ms
76,416 KB
testcase_08 AC 2,025 ms
76,560 KB
testcase_09 AC 1,515 ms
76,628 KB
testcase_10 AC 74 ms
76,624 KB
testcase_11 AC 436 ms
75,888 KB
testcase_12 AC 3,041 ms
76,332 KB
testcase_13 AC 143 ms
76,280 KB
testcase_14 AC 102 ms
75,772 KB
testcase_15 AC 2,465 ms
76,192 KB
testcase_16 AC 782 ms
76,460 KB
testcase_17 AC 999 ms
76,192 KB
testcase_18 AC 211 ms
76,180 KB
testcase_19 AC 214 ms
76,492 KB
testcase_20 AC 36 ms
53,464 KB
testcase_21 AC 36 ms
53,480 KB
testcase_22 AC 35 ms
51,944 KB
testcase_23 AC 36 ms
53,216 KB
testcase_24 AC 39 ms
53,420 KB
testcase_25 AC 38 ms
53,972 KB
testcase_26 AC 36 ms
52,808 KB
testcase_27 AC 36 ms
52,260 KB
testcase_28 AC 35 ms
53,636 KB
testcase_29 AC 35 ms
53,564 KB
testcase_30 AC 3,861 ms
77,024 KB
testcase_31 AC 3,907 ms
76,816 KB
testcase_32 AC 3,865 ms
77,168 KB
testcase_33 AC 3,807 ms
76,812 KB
testcase_34 AC 3,816 ms
76,548 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

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 += n * (n - 1) // 2 * q
        if b >= mod:
            q, b = b // mod, b % mod
            res += n * q
        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