結果

問題 No.1201 お菓子配り-4
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-11 15:16:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 998 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 151,900 KB
最終ジャッジ日時 2024-09-18 06:26:58
合計ジャッジ時間 50,338 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
151,900 KB
testcase_01 AC 1,981 ms
76,160 KB
testcase_02 AC 2,850 ms
76,544 KB
testcase_03 AC 1,396 ms
76,284 KB
testcase_04 AC 729 ms
75,904 KB
testcase_05 AC 1,691 ms
76,380 KB
testcase_06 AC 322 ms
75,776 KB
testcase_07 AC 820 ms
76,160 KB
testcase_08 AC 2,132 ms
76,288 KB
testcase_09 AC 1,577 ms
76,032 KB
testcase_10 AC 81 ms
76,160 KB
testcase_11 AC 490 ms
76,396 KB
testcase_12 AC 3,252 ms
76,364 KB
testcase_13 AC 153 ms
75,904 KB
testcase_14 AC 105 ms
75,684 KB
testcase_15 AC 2,660 ms
76,416 KB
testcase_16 AC 816 ms
75,904 KB
testcase_17 AC 1,039 ms
76,236 KB
testcase_18 AC 226 ms
75,952 KB
testcase_19 AC 213 ms
75,820 KB
testcase_20 AC 38 ms
51,840 KB
testcase_21 AC 37 ms
51,712 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 38 ms
52,352 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 38 ms
52,480 KB
testcase_26 AC 38 ms
52,480 KB
testcase_27 AC 38 ms
52,352 KB
testcase_28 AC 38 ms
52,480 KB
testcase_29 AC 38 ms
51,840 KB
testcase_30 TLE -
testcase_31 AC 3,996 ms
76,364 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
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 %= MOD
    res *= 2
    res %= MOD
    print(res)
0