結果

問題 No.1201 お菓子配り-4
ユーザー chielochielo
提出日時 2020-08-28 22:17:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,514 ms / 4,000 ms
コード長 684 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 76,836 KB
最終ジャッジ日時 2024-11-14 01:08:27
合計ジャッジ時間 19,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
76,064 KB
testcase_01 AC 753 ms
76,416 KB
testcase_02 AC 1,061 ms
76,836 KB
testcase_03 AC 548 ms
76,736 KB
testcase_04 AC 298 ms
76,512 KB
testcase_05 AC 660 ms
76,608 KB
testcase_06 AC 149 ms
76,276 KB
testcase_07 AC 336 ms
76,360 KB
testcase_08 AC 808 ms
76,460 KB
testcase_09 AC 613 ms
76,356 KB
testcase_10 AC 66 ms
74,536 KB
testcase_11 AC 203 ms
76,540 KB
testcase_12 AC 1,205 ms
76,484 KB
testcase_13 AC 90 ms
76,284 KB
testcase_14 AC 75 ms
76,032 KB
testcase_15 AC 958 ms
76,364 KB
testcase_16 AC 335 ms
76,232 KB
testcase_17 AC 415 ms
76,236 KB
testcase_18 AC 119 ms
76,280 KB
testcase_19 AC 117 ms
76,096 KB
testcase_20 AC 37 ms
53,212 KB
testcase_21 AC 38 ms
52,584 KB
testcase_22 AC 37 ms
53,268 KB
testcase_23 AC 38 ms
53,668 KB
testcase_24 AC 37 ms
52,656 KB
testcase_25 AC 37 ms
53,332 KB
testcase_26 AC 37 ms
52,868 KB
testcase_27 AC 37 ms
52,660 KB
testcase_28 AC 36 ms
52,868 KB
testcase_29 AC 37 ms
54,204 KB
testcase_30 AC 1,514 ms
76,508 KB
testcase_31 AC 1,500 ms
76,496 KB
testcase_32 AC 1,492 ms
76,600 KB
testcase_33 AC 1,505 ms
76,532 KB
testcase_34 AC 1,490 ms
76,728 KB
testcase_35 AC 935 ms
76,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

def sum_of_floor(n, p, q):
    s = 0
    t = gcd(p, q)
    p, q = p // t, q // t
    z = 1
    while q > 0 and n > 0:
        t = p // q
        s = s + z * t * n * (n + 1) // 2
        p = p - q * t
        t = n // q
        s = s + z * p * t * (n + 1) - z * t * (p * q * t + p + q - 1) // 2
        n = n - q * t
        t = (n * p) // q
        s = s + z * t * n
        n = t
        p, q = q, p
        z = -z
    return s

n = int(input())
m = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
ans = 0
for i in range(n):
    for j in range(m):
        ans += sum_of_floor(b[j], a[i], b[j]) * 2
print(ans % (10 ** 9 + 7))
0