結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
59,136 KB
testcase_01 AC 385 ms
60,416 KB
testcase_02 AC 579 ms
61,440 KB
testcase_03 AC 290 ms
60,544 KB
testcase_04 AC 159 ms
60,160 KB
testcase_05 AC 385 ms
61,568 KB
testcase_06 AC 86 ms
59,520 KB
testcase_07 AC 176 ms
61,056 KB
testcase_08 AC 413 ms
61,824 KB
testcase_09 AC 312 ms
61,440 KB
testcase_10 AC 61 ms
60,672 KB
testcase_11 AC 112 ms
59,776 KB
testcase_12 AC 589 ms
61,952 KB
testcase_13 AC 60 ms
59,520 KB
testcase_14 AC 52 ms
59,136 KB
testcase_15 AC 500 ms
61,440 KB
testcase_16 AC 180 ms
60,032 KB
testcase_17 AC 213 ms
60,160 KB
testcase_18 AC 71 ms
60,416 KB
testcase_19 AC 67 ms
59,648 KB
testcase_20 AC 36 ms
52,140 KB
testcase_21 AC 35 ms
51,968 KB
testcase_22 AC 35 ms
52,096 KB
testcase_23 AC 36 ms
52,376 KB
testcase_24 AC 36 ms
51,968 KB
testcase_25 AC 35 ms
51,840 KB
testcase_26 AC 40 ms
52,352 KB
testcase_27 AC 37 ms
52,096 KB
testcase_28 AC 37 ms
51,840 KB
testcase_29 AC 37 ms
51,968 KB
testcase_30 AC 746 ms
61,952 KB
testcase_31 AC 761 ms
61,952 KB
testcase_32 AC 745 ms
61,952 KB
testcase_33 AC 759 ms
61,824 KB
testcase_34 AC 770 ms
62,080 KB
testcase_35 AC 60 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