結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
75,904 KB
testcase_01 AC 1,930 ms
77,060 KB
testcase_02 AC 2,739 ms
76,444 KB
testcase_03 AC 1,452 ms
76,560 KB
testcase_04 AC 687 ms
76,444 KB
testcase_05 AC 1,644 ms
76,664 KB
testcase_06 AC 298 ms
75,972 KB
testcase_07 AC 770 ms
76,924 KB
testcase_08 AC 2,050 ms
76,520 KB
testcase_09 AC 1,518 ms
76,376 KB
testcase_10 AC 75 ms
76,612 KB
testcase_11 AC 433 ms
76,208 KB
testcase_12 AC 3,099 ms
76,476 KB
testcase_13 AC 158 ms
76,456 KB
testcase_14 AC 112 ms
76,072 KB
testcase_15 AC 2,432 ms
76,532 KB
testcase_16 AC 784 ms
76,396 KB
testcase_17 AC 1,000 ms
76,444 KB
testcase_18 AC 222 ms
76,196 KB
testcase_19 AC 202 ms
76,340 KB
testcase_20 AC 35 ms
53,600 KB
testcase_21 AC 35 ms
53,432 KB
testcase_22 AC 36 ms
52,948 KB
testcase_23 AC 35 ms
52,868 KB
testcase_24 AC 35 ms
53,332 KB
testcase_25 AC 35 ms
53,620 KB
testcase_26 AC 36 ms
52,588 KB
testcase_27 AC 34 ms
52,656 KB
testcase_28 AC 35 ms
53,612 KB
testcase_29 AC 34 ms
53,208 KB
testcase_30 AC 3,915 ms
77,128 KB
testcase_31 AC 3,869 ms
76,464 KB
testcase_32 AC 3,873 ms
77,008 KB
testcase_33 AC 3,833 ms
76,720 KB
testcase_34 AC 3,845 ms
76,928 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://maspypy.github.io/library/mod/floor_sum_of_linear.hpp
# !sum((x * a + b) // mod for x in range(L, R))


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