結果

問題 No.1281 Cigarette Distribution
ユーザー maninimanini
提出日時 2021-01-25 19:12:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 77,408 KB
最終ジャッジ日時 2024-06-22 13:38:16
合計ジャッジ時間 4,799 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,148 KB
testcase_01 AC 33 ms
53,932 KB
testcase_02 AC 35 ms
53,772 KB
testcase_03 AC 33 ms
52,736 KB
testcase_04 AC 33 ms
53,292 KB
testcase_05 AC 32 ms
52,192 KB
testcase_06 AC 33 ms
53,960 KB
testcase_07 AC 33 ms
53,164 KB
testcase_08 WA -
testcase_09 AC 31 ms
53,428 KB
testcase_10 AC 33 ms
53,812 KB
testcase_11 AC 34 ms
52,372 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

N, M = list(map(int, input().split()))     # スペース区切り連続数字

for i in range(1, M+1):
    base = (N + 1) // i
    base_plus1_count = (N + 1) - base * i
    base_count = i - base_plus1_count
    if base_plus1_count == 0:
        res = (base-1) * pow(base, base_count-1, MOD) % MOD
    else:
        t1 = (base-1) * pow(base, base_count-1, MOD) * pow(base+1, base_plus1_count, MOD) % MOD
        t2 = pow(base, base_count+1, MOD) * pow(base+1, base_plus1_count-1, MOD) % MOD
        res = min(t1, t2)

    print("{}".format(res))
0