結果

問題 No.1201 お菓子配り-4
ユーザー rlangevinrlangevin
提出日時 2023-10-26 23:12:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 661 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 81,720 KB
実行使用メモリ 82,872 KB
最終ジャッジ日時 2024-09-25 12:31:47
合計ジャッジ時間 46,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
75,480 KB
testcase_01 AC 1,840 ms
75,920 KB
testcase_02 AC 2,608 ms
76,092 KB
testcase_03 AC 1,277 ms
76,000 KB
testcase_04 AC 650 ms
75,968 KB
testcase_05 AC 1,556 ms
75,864 KB
testcase_06 AC 285 ms
75,520 KB
testcase_07 AC 738 ms
76,044 KB
testcase_08 AC 1,930 ms
75,872 KB
testcase_09 AC 1,452 ms
75,980 KB
testcase_10 AC 69 ms
74,188 KB
testcase_11 AC 423 ms
76,012 KB
testcase_12 AC 2,955 ms
76,144 KB
testcase_13 AC 134 ms
75,828 KB
testcase_14 AC 95 ms
75,624 KB
testcase_15 AC 2,345 ms
75,892 KB
testcase_16 AC 749 ms
76,096 KB
testcase_17 AC 982 ms
75,904 KB
testcase_18 AC 199 ms
75,908 KB
testcase_19 AC 196 ms
75,804 KB
testcase_20 AC 36 ms
52,892 KB
testcase_21 AC 37 ms
53,900 KB
testcase_22 AC 36 ms
52,600 KB
testcase_23 AC 36 ms
52,156 KB
testcase_24 AC 35 ms
52,756 KB
testcase_25 AC 38 ms
52,440 KB
testcase_26 AC 37 ms
52,536 KB
testcase_27 AC 37 ms
52,000 KB
testcase_28 AC 36 ms
53,308 KB
testcase_29 AC 36 ms
53,184 KB
testcase_30 AC 3,732 ms
76,316 KB
testcase_31 AC 3,758 ms
76,348 KB
testcase_32 AC 3,748 ms
76,408 KB
testcase_33 AC 3,705 ms
76,308 KB
testcase_34 AC 3,692 ms
76,344 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://qiita.com/AkariLuminous/items/3e2c80baa6d5e6f3abe9#4-floor_sum
mod = 10**9 + 7
def floor_sum(n, m, a, b):
    ans = 0
    while True:
        if a >= m or a < 0:
            ans += n * (n - 1) * (a // m) // 2
            a %= m
        if b >= m or b < 0:
            ans += n * (b // m)
            b %= m
        y_max = a * n + b
        if y_max < m: break
        n, b, m, a = y_max // m, y_max % m, a, m
    return ans   

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(b + 1, b, a, 0) * 2
    ans %= mod
        
print(ans)
0