結果

問題 No.1281 Cigarette Distribution
ユーザー tanon710tanon710
提出日時 2020-11-07 00:19:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2024-07-22 13:54:55
合計ジャッジ時間 3,188 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,100 KB
testcase_01 AC 37 ms
52,004 KB
testcase_02 AC 38 ms
53,348 KB
testcase_03 AC 33 ms
53,096 KB
testcase_04 AC 34 ms
53,140 KB
testcase_05 AC 34 ms
52,000 KB
testcase_06 AC 35 ms
52,708 KB
testcase_07 AC 33 ms
52,216 KB
testcase_08 AC 34 ms
52,004 KB
testcase_09 AC 37 ms
53,108 KB
testcase_10 AC 33 ms
52,392 KB
testcase_11 AC 33 ms
52,476 KB
testcase_12 AC 98 ms
76,316 KB
testcase_13 AC 141 ms
75,944 KB
testcase_14 AC 130 ms
76,068 KB
testcase_15 AC 103 ms
76,532 KB
testcase_16 AC 117 ms
76,052 KB
testcase_17 AC 48 ms
61,296 KB
testcase_18 AC 156 ms
75,888 KB
testcase_19 AC 153 ms
75,892 KB
testcase_20 AC 158 ms
76,144 KB
testcase_21 AC 143 ms
75,812 KB
testcase_22 AC 155 ms
76,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

debug=False
def pprint(*s):
    if debug==True:
        print(*s)

mod=10**9+7

n,m=map(int,input().split())
for i in range(1,m+1):
    if 2*i-1>n:
        print(0)
    elif i==1:
        print(n)
    else:
        moves=n-(2*i-1)
        plus=moves//i
        one=1
        two=i-1-moves%i
        three=moves%i
        if moves%i==0:
            print((pow(1+plus,one,mod)*pow(2+plus,two,mod))%mod)
        elif moves%i==i-1:
            print((pow(1+plus,one,mod)*pow(3+plus,three,mod))%mod)
        else:
            print((pow(1+plus,one,mod)*pow(2+plus,two,mod)*pow(3+plus,three,mod))%mod)
        pprint(i,moves,plus,one,two,three)
0