結果

問題 No.1201 お菓子配り-4
ユーザー titiatitia
提出日時 2024-08-14 03:50:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 751 ms / 4,000 ms
コード長 312 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-08-14 03:50:57
合計ジャッジ時間 10,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
59,136 KB
testcase_01 AC 390 ms
60,288 KB
testcase_02 AC 553 ms
61,696 KB
testcase_03 AC 276 ms
60,288 KB
testcase_04 AC 157 ms
60,032 KB
testcase_05 AC 331 ms
61,440 KB
testcase_06 AC 87 ms
59,392 KB
testcase_07 AC 175 ms
61,184 KB
testcase_08 AC 401 ms
61,568 KB
testcase_09 AC 318 ms
61,440 KB
testcase_10 AC 49 ms
60,800 KB
testcase_11 AC 114 ms
59,776 KB
testcase_12 AC 596 ms
61,568 KB
testcase_13 AC 64 ms
59,520 KB
testcase_14 AC 58 ms
59,008 KB
testcase_15 AC 497 ms
61,568 KB
testcase_16 AC 175 ms
60,032 KB
testcase_17 AC 214 ms
59,904 KB
testcase_18 AC 76 ms
60,032 KB
testcase_19 AC 71 ms
59,648 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 37 ms
51,840 KB
testcase_22 AC 38 ms
51,840 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 37 ms
51,968 KB
testcase_26 AC 41 ms
51,840 KB
testcase_27 AC 39 ms
51,968 KB
testcase_28 AC 37 ms
51,968 KB
testcase_29 AC 38 ms
51,968 KB
testcase_30 AC 732 ms
61,824 KB
testcase_31 AC 741 ms
61,824 KB
testcase_32 AC 740 ms
61,952 KB
testcase_33 AC 733 ms
61,696 KB
testcase_34 AC 751 ms
61,568 KB
testcase_35 AC 66 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

from math import gcd

N=int(input())
M=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

ANS=0
mod=10**9+7

for a in A:
    for b in B:
        ANS=(ANS+(a-1)*(b+1)+gcd(a,b)+1)%mod
print(ANS%mod)
0