結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
76,020 KB
testcase_01 AC 1,842 ms
76,524 KB
testcase_02 AC 2,620 ms
76,824 KB
testcase_03 AC 1,288 ms
76,332 KB
testcase_04 AC 667 ms
76,360 KB
testcase_05 AC 1,561 ms
76,812 KB
testcase_06 AC 297 ms
75,836 KB
testcase_07 AC 752 ms
76,744 KB
testcase_08 AC 1,995 ms
76,872 KB
testcase_09 AC 1,492 ms
76,584 KB
testcase_10 AC 86 ms
76,800 KB
testcase_11 AC 465 ms
76,352 KB
testcase_12 AC 2,936 ms
76,836 KB
testcase_13 AC 141 ms
76,380 KB
testcase_14 AC 96 ms
76,120 KB
testcase_15 AC 2,428 ms
76,772 KB
testcase_16 AC 741 ms
76,156 KB
testcase_17 AC 980 ms
76,368 KB
testcase_18 AC 211 ms
76,516 KB
testcase_19 AC 196 ms
76,432 KB
testcase_20 AC 36 ms
52,652 KB
testcase_21 AC 36 ms
53,548 KB
testcase_22 AC 39 ms
53,140 KB
testcase_23 AC 37 ms
53,604 KB
testcase_24 AC 38 ms
53,840 KB
testcase_25 AC 37 ms
52,572 KB
testcase_26 AC 38 ms
53,124 KB
testcase_27 AC 37 ms
52,620 KB
testcase_28 AC 37 ms
52,944 KB
testcase_29 AC 37 ms
52,744 KB
testcase_30 AC 3,758 ms
77,236 KB
testcase_31 AC 3,659 ms
77,232 KB
testcase_32 AC 3,726 ms
77,112 KB
testcase_33 AC 3,716 ms
76,316 KB
testcase_34 AC 3,723 ms
76,700 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil

MOD = int(1e9 + 7)


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
        res %= MOD
        if b >= mod:
            q, b = b // mod, b % mod
            res += n * q
            res %= MOD
        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()))
    res = 0
    for a in A:
        for b in B:
            res += floor_sum_of_linear(1, b + 1, a, 0, b)
    res *= 2
    res %= MOD
    print(res)
0