結果

問題 No.1158 GCD Products easy
ユーザー brthyyjpbrthyyjp
提出日時 2021-07-04 18:13:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-01 07:59:00
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,912 KB
testcase_01 AC 50 ms
54,912 KB
testcase_02 AC 50 ms
55,552 KB
testcase_03 AC 46 ms
54,912 KB
testcase_04 AC 46 ms
54,656 KB
testcase_05 AC 50 ms
61,056 KB
testcase_06 AC 46 ms
55,040 KB
testcase_07 AC 69 ms
76,416 KB
testcase_08 AC 50 ms
55,040 KB
testcase_09 AC 46 ms
55,040 KB
testcase_10 AC 44 ms
54,912 KB
testcase_11 AC 46 ms
54,272 KB
testcase_12 AC 57 ms
66,688 KB
testcase_13 AC 45 ms
54,912 KB
testcase_14 AC 46 ms
55,040 KB
testcase_15 AC 44 ms
54,912 KB
testcase_16 AC 46 ms
54,784 KB
testcase_17 AC 47 ms
55,040 KB
testcase_18 AC 45 ms
54,936 KB
testcase_19 AC 47 ms
55,168 KB
testcase_20 AC 47 ms
54,272 KB
testcase_21 AC 47 ms
55,040 KB
testcase_22 AC 46 ms
54,912 KB
testcase_23 AC 47 ms
54,272 KB
testcase_24 AC 65 ms
75,904 KB
testcase_25 AC 47 ms
55,424 KB
testcase_26 AC 248 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from functools import reduce

def gcd(*numbers):
    return reduce(fractions.gcd, numbers)
    #return reduce(math.gcd, numbers)

def gcd_list(numbers):
    return reduce(math.gcd, numbers)

a, b, n = map(int, input().split())
import itertools
mod = 10**9+7
ans = 1
for p in itertools.product(range(a, b+1), repeat=n):
    g = gcd_list(p)
    ans *= g
    ans %= mod
print(ans)
0