結果

問題 No.1201 お菓子配り-4
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-11 15:14:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,002 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,824 KB
実行使用メモリ 82,484 KB
最終ジャッジ日時 2024-09-18 06:25:56
合計ジャッジ時間 50,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
82,484 KB
testcase_01 AC 2,041 ms
76,092 KB
testcase_02 AC 2,859 ms
75,900 KB
testcase_03 AC 1,428 ms
76,008 KB
testcase_04 AC 719 ms
75,896 KB
testcase_05 AC 1,699 ms
76,124 KB
testcase_06 AC 302 ms
75,872 KB
testcase_07 AC 804 ms
76,004 KB
testcase_08 AC 2,126 ms
75,968 KB
testcase_09 AC 1,621 ms
76,296 KB
testcase_10 AC 79 ms
76,092 KB
testcase_11 AC 459 ms
76,024 KB
testcase_12 AC 3,221 ms
76,076 KB
testcase_13 AC 148 ms
76,128 KB
testcase_14 AC 101 ms
75,384 KB
testcase_15 AC 2,536 ms
76,056 KB
testcase_16 AC 808 ms
76,252 KB
testcase_17 AC 1,039 ms
76,132 KB
testcase_18 AC 223 ms
75,916 KB
testcase_19 AC 210 ms
76,180 KB
testcase_20 AC 38 ms
53,176 KB
testcase_21 AC 39 ms
52,648 KB
testcase_22 AC 39 ms
52,064 KB
testcase_23 AC 38 ms
53,832 KB
testcase_24 AC 38 ms
53,832 KB
testcase_25 AC 38 ms
52,072 KB
testcase_26 AC 38 ms
52,700 KB
testcase_27 AC 39 ms
52,660 KB
testcase_28 AC 37 ms
53,056 KB
testcase_29 AC 39 ms
53,420 KB
testcase_30 TLE -
testcase_31 TLE -
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