結果

問題 No.1419 Power Moves
ユーザー convexineqconvexineq
提出日時 2021-03-05 22:22:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 79,048 KB
最終ジャッジ日時 2024-10-07 02:51:30
合計ジャッジ時間 3,864 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,068 KB
testcase_01 AC 35 ms
52,488 KB
testcase_02 AC 35 ms
52,732 KB
testcase_03 AC 35 ms
53,012 KB
testcase_04 AC 35 ms
52,500 KB
testcase_05 AC 35 ms
52,068 KB
testcase_06 AC 39 ms
52,964 KB
testcase_07 AC 37 ms
51,956 KB
testcase_08 AC 36 ms
52,284 KB
testcase_09 AC 60 ms
77,688 KB
testcase_10 AC 49 ms
63,320 KB
testcase_11 AC 50 ms
66,420 KB
testcase_12 AC 63 ms
77,688 KB
testcase_13 AC 61 ms
77,944 KB
testcase_14 AC 62 ms
78,416 KB
testcase_15 AC 62 ms
78,164 KB
testcase_16 AC 61 ms
78,320 KB
testcase_17 AC 35 ms
52,000 KB
testcase_18 AC 35 ms
52,492 KB
testcase_19 AC 35 ms
51,824 KB
testcase_20 AC 64 ms
78,852 KB
testcase_21 AC 63 ms
78,968 KB
testcase_22 AC 62 ms
78,772 KB
testcase_23 AC 63 ms
78,244 KB
testcase_24 AC 63 ms
78,260 KB
testcase_25 AC 64 ms
79,048 KB
testcase_26 AC 64 ms
78,640 KB
testcase_27 AC 61 ms
77,828 KB
testcase_28 AC 64 ms
78,696 KB
testcase_29 AC 62 ms
78,348 KB
testcase_30 AC 64 ms
78,624 KB
testcase_31 AC 63 ms
78,744 KB
testcase_32 AC 62 ms
78,308 KB
testcase_33 AC 62 ms
78,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9+7
n,k = map(int,input().split())
x = pow(2,k,n*MOD)
q,r = x//n,x%n
res = [q+1]*r + [q]*(n-r)
ans = [0]*n
d = pow(2,k,n)-1
for i in range(n):
    ans[(2*i-d)%n] += res[i]
inv = pow(2,MOD-1-k,MOD)
for i in range(n):
    print(ans[i]*inv%MOD)
0