結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
76,360 KB
testcase_01 AC 1,992 ms
76,364 KB
testcase_02 AC 2,788 ms
76,640 KB
testcase_03 AC 1,360 ms
76,412 KB
testcase_04 AC 714 ms
76,448 KB
testcase_05 AC 1,692 ms
76,508 KB
testcase_06 AC 309 ms
75,932 KB
testcase_07 AC 790 ms
76,380 KB
testcase_08 AC 2,081 ms
76,620 KB
testcase_09 AC 1,559 ms
76,248 KB
testcase_10 AC 80 ms
76,800 KB
testcase_11 AC 452 ms
76,352 KB
testcase_12 AC 3,149 ms
76,684 KB
testcase_13 AC 148 ms
76,280 KB
testcase_14 AC 105 ms
76,068 KB
testcase_15 AC 2,543 ms
76,352 KB
testcase_16 AC 804 ms
76,048 KB
testcase_17 AC 1,020 ms
76,904 KB
testcase_18 AC 220 ms
76,268 KB
testcase_19 AC 205 ms
76,892 KB
testcase_20 AC 35 ms
53,356 KB
testcase_21 AC 37 ms
52,612 KB
testcase_22 AC 33 ms
53,304 KB
testcase_23 AC 37 ms
52,396 KB
testcase_24 AC 35 ms
53,484 KB
testcase_25 AC 37 ms
52,992 KB
testcase_26 AC 36 ms
52,884 KB
testcase_27 AC 37 ms
54,092 KB
testcase_28 AC 35 ms
53,368 KB
testcase_29 AC 34 ms
53,616 KB
testcase_30 AC 3,981 ms
76,888 KB
testcase_31 AC 3,991 ms
77,124 KB
testcase_32 AC 3,985 ms
76,656 KB
testcase_33 AC 3,975 ms
76,696 KB
testcase_34 AC 3,993 ms
76,600 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__":
    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 %= 10**9 + 7
    print(ans)
0