結果

問題 No.1201 お菓子配り-4
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-11 15:11:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 979 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 83,132 KB
最終ジャッジ日時 2024-09-18 06:25:05
合計ジャッジ時間 46,954 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 196 ms
81,280 KB
testcase_01 AC 1,849 ms
76,764 KB
testcase_02 AC 2,600 ms
75,904 KB
testcase_03 AC 1,304 ms
76,196 KB
testcase_04 AC 663 ms
75,904 KB
testcase_05 AC 1,551 ms
76,544 KB
testcase_06 AC 282 ms
75,392 KB
testcase_07 AC 740 ms
76,480 KB
testcase_08 AC 1,952 ms
76,544 KB
testcase_09 AC 1,454 ms
75,904 KB
testcase_10 AC 84 ms
76,032 KB
testcase_11 AC 423 ms
76,436 KB
testcase_12 AC 2,973 ms
76,160 KB
testcase_13 AC 151 ms
76,160 KB
testcase_14 AC 103 ms
75,776 KB
testcase_15 AC 2,358 ms
76,544 KB
testcase_16 AC 776 ms
75,648 KB
testcase_17 AC 966 ms
75,904 KB
testcase_18 AC 208 ms
75,520 KB
testcase_19 AC 202 ms
76,520 KB
testcase_20 AC 34 ms
52,480 KB
testcase_21 AC 35 ms
52,096 KB
testcase_22 AC 34 ms
52,480 KB
testcase_23 AC 35 ms
51,584 KB
testcase_24 AC 34 ms
52,480 KB
testcase_25 AC 35 ms
52,224 KB
testcase_26 AC 35 ms
51,712 KB
testcase_27 AC 35 ms
52,352 KB
testcase_28 AC 34 ms
52,224 KB
testcase_29 AC 37 ms
52,224 KB
testcase_30 AC 3,865 ms
76,544 KB
testcase_31 AC 3,734 ms
76,428 KB
testcase_32 AC 3,770 ms
76,408 KB
testcase_33 AC 3,738 ms
76,844 KB
testcase_34 AC 3,736 ms
76,356 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, div: int) -> int:
    """
    ```
    sum((x * a + b) // div 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 / div)
        b += k * div
        res -= n * k

    while n:
        q, a = a // div, a % div
        res += n * (n - 1) // 2 * q
        # res %= MOD
        if b >= div:
            q, b = b // div, b % div
            res += n * q
            # res %= MOD
        n, b = (a * n + b) // div, (a * n + b) % div
        a, div = div, a

    return res


if __name__ == "__main__":
    n = int(input())
    m = int(input())
    nums1 = list(map(int, input().split()))
    nums2 = list(map(int, input().split()))

    res = 0
    for a in nums1:
        for b in nums2:
            res += floor_sum_of_linear(1, b + 1, a, 0, b)
    res *= 2
    res %= MOD
    print(res)
0