結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
76,208 KB
testcase_01 AC 1,843 ms
76,844 KB
testcase_02 AC 2,647 ms
76,692 KB
testcase_03 AC 1,287 ms
76,176 KB
testcase_04 AC 647 ms
76,616 KB
testcase_05 AC 1,620 ms
76,716 KB
testcase_06 AC 302 ms
75,640 KB
testcase_07 AC 770 ms
76,424 KB
testcase_08 AC 1,936 ms
76,560 KB
testcase_09 AC 1,450 ms
76,420 KB
testcase_10 AC 74 ms
76,312 KB
testcase_11 AC 438 ms
75,924 KB
testcase_12 AC 2,958 ms
76,572 KB
testcase_13 AC 146 ms
76,308 KB
testcase_14 AC 105 ms
75,988 KB
testcase_15 AC 2,354 ms
76,532 KB
testcase_16 AC 755 ms
76,248 KB
testcase_17 AC 954 ms
76,712 KB
testcase_18 AC 212 ms
76,036 KB
testcase_19 AC 197 ms
76,452 KB
testcase_20 AC 37 ms
52,600 KB
testcase_21 AC 36 ms
52,596 KB
testcase_22 AC 36 ms
53,332 KB
testcase_23 AC 35 ms
53,212 KB
testcase_24 AC 37 ms
53,084 KB
testcase_25 AC 35 ms
52,756 KB
testcase_26 AC 35 ms
52,864 KB
testcase_27 AC 36 ms
53,200 KB
testcase_28 AC 35 ms
53,948 KB
testcase_29 AC 35 ms
52,656 KB
testcase_30 AC 3,695 ms
76,796 KB
testcase_31 AC 3,870 ms
77,292 KB
testcase_32 AC 3,886 ms
76,828 KB
testcase_33 AC 3,779 ms
76,868 KB
testcase_34 AC 3,720 ms
76,888 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 = res + n * (n - 1) // 2 * q
        if b >= mod:
            q, b = b // mod, b % mod
            res = 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