結果

問題 No.1201 お菓子配り-4
ユーザー 37zigen37zigen
提出日時 2020-08-30 07:44:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 279 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,088 KB
最終ジャッジ日時 2024-11-14 17:55:47
合計ジャッジ時間 62,144 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
17,828 KB
testcase_01 AC 2,631 ms
18,080 KB
testcase_02 AC 3,847 ms
18,084 KB
testcase_03 AC 1,914 ms
17,700 KB
testcase_04 AC 948 ms
17,828 KB
testcase_05 AC 2,274 ms
18,088 KB
testcase_06 AC 362 ms
17,832 KB
testcase_07 AC 1,045 ms
17,952 KB
testcase_08 AC 2,902 ms
17,952 KB
testcase_09 AC 2,067 ms
17,952 KB
testcase_10 AC 47 ms
11,008 KB
testcase_11 AC 581 ms
10,880 KB
testcase_12 TLE -
testcase_13 AC 146 ms
10,880 KB
testcase_14 AC 90 ms
10,880 KB
testcase_15 AC 3,479 ms
11,136 KB
testcase_16 AC 1,064 ms
11,008 KB
testcase_17 AC 1,371 ms
10,880 KB
testcase_18 AC 242 ms
11,008 KB
testcase_19 AC 232 ms
11,008 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 31 ms
10,880 KB
testcase_28 AC 32 ms
10,752 KB
testcase_29 AC 32 ms
10,752 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
MOD=10**9+7
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:
        d=b//gcd(a,b)
        W=b
        H=W*a//b
        ans+=(H+1)*(W+1)-2*W+(W-1)//d
        ans%=MOD
print(ans)
0