結果

問題 No.1201 お菓子配り-4
ユーザー hotman78hotman78
提出日時 2020-08-22 08:46:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 227 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-07 13:22:06
合計ジャッジ時間 44,028 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
10,880 KB
testcase_01 AC 1,699 ms
11,136 KB
testcase_02 AC 2,566 ms
11,008 KB
testcase_03 AC 1,262 ms
11,008 KB
testcase_04 AC 599 ms
11,008 KB
testcase_05 AC 1,504 ms
10,880 KB
testcase_06 AC 249 ms
10,880 KB
testcase_07 AC 688 ms
10,880 KB
testcase_08 AC 1,861 ms
10,880 KB
testcase_09 AC 1,378 ms
10,880 KB
testcase_10 AC 39 ms
11,008 KB
testcase_11 AC 368 ms
10,752 KB
testcase_12 AC 2,861 ms
11,008 KB
testcase_13 AC 103 ms
10,752 KB
testcase_14 AC 66 ms
10,752 KB
testcase_15 AC 2,178 ms
11,008 KB
testcase_16 AC 703 ms
10,880 KB
testcase_17 AC 901 ms
10,880 KB
testcase_18 AC 165 ms
11,008 KB
testcase_19 AC 158 ms
10,880 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 29 ms
10,880 KB
testcase_22 AC 29 ms
10,880 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 28 ms
10,880 KB
testcase_26 AC 28 ms
10,880 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 3,469 ms
11,008 KB
testcase_31 AC 3,555 ms
11,136 KB
testcase_32 AC 3,620 ms
11,008 KB
testcase_33 AC 3,527 ms
11,136 KB
testcase_34 AC 3,474 ms
11,136 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
MOD=1000000007
n=int(input())
m=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
ans=0
for i in a:
    for j in b:
        ans=(ans+(i+1)*(j+1)+(math.gcd(i,j)+1)-2*(j+1))%MOD
print(ans)
0