結果

問題 No.1158 GCD Products easy
ユーザー lloyz
提出日時 2022-07-05 01:18:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-14 22:37:51
合計ジャッジ時間 2,846 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from functools import reduce

a, b, n = map(int, input().split())
mod = 10**9 + 7

def bfs(L, idx):
    if idx == n:
        return reduce(gcd, L)
    ans = 1
    for i in range(a, b + 1):
        L[idx] = i
        ans *= bfs(L, idx + 1)
        ans %= mod
    return ans

print(bfs([0 for _ in range(n)], 0))
0