結果

問題 No.1419 Power Moves
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-19 16:30:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 77,872 KB
最終ジャッジ日時 2024-06-22 22:09:08
合計ジャッジ時間 4,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,596 KB
testcase_01 AC 35 ms
52,520 KB
testcase_02 AC 35 ms
53,356 KB
testcase_03 AC 34 ms
52,396 KB
testcase_04 AC 34 ms
52,556 KB
testcase_05 AC 34 ms
53,144 KB
testcase_06 AC 35 ms
52,608 KB
testcase_07 AC 34 ms
52,280 KB
testcase_08 AC 37 ms
53,864 KB
testcase_09 AC 58 ms
77,120 KB
testcase_10 AC 47 ms
63,876 KB
testcase_11 AC 48 ms
66,100 KB
testcase_12 AC 59 ms
77,388 KB
testcase_13 AC 57 ms
77,216 KB
testcase_14 AC 61 ms
77,764 KB
testcase_15 AC 59 ms
77,664 KB
testcase_16 AC 58 ms
77,560 KB
testcase_17 AC 36 ms
52,728 KB
testcase_18 AC 34 ms
52,752 KB
testcase_19 AC 36 ms
52,616 KB
testcase_20 AC 61 ms
77,720 KB
testcase_21 AC 60 ms
77,796 KB
testcase_22 AC 59 ms
77,572 KB
testcase_23 AC 60 ms
77,396 KB
testcase_24 AC 62 ms
77,844 KB
testcase_25 AC 59 ms
77,872 KB
testcase_26 AC 60 ms
77,444 KB
testcase_27 AC 61 ms
77,428 KB
testcase_28 AC 59 ms
77,788 KB
testcase_29 AC 61 ms
77,824 KB
testcase_30 AC 62 ms
77,584 KB
testcase_31 AC 61 ms
77,752 KB
testcase_32 AC 60 ms
77,384 KB
testcase_33 AC 60 ms
77,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x = pow(2,k,n*mod)
d,m = divmod(x,n)
count = [d]*n
for i in range(m):
    count[i] += 1

ans = [0]*n
p = pow(2,k,n)-1
for i in range(n):
    ans[(2*i-p)%n] += count[i]

inv = pow(2,mod-1-k,mod)
for i in ans:
    print(i*inv%mod)
0