結果

問題 No.1419 Power Moves
ユーザー tktk_snsntktk_snsn
提出日時 2023-02-19 09:09:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-07-20 11:25:09
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 114 ms
12,544 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 40 ms
11,136 KB
testcase_12 AC 132 ms
15,232 KB
testcase_13 AC 122 ms
13,568 KB
testcase_14 AC 116 ms
11,648 KB
testcase_15 AC 115 ms
11,648 KB
testcase_16 AC 116 ms
11,648 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 156 ms
13,824 KB
testcase_21 AC 166 ms
14,592 KB
testcase_22 AC 152 ms
13,952 KB
testcase_23 AC 148 ms
13,824 KB
testcase_24 AC 147 ms
13,824 KB
testcase_25 AC 152 ms
13,824 KB
testcase_26 AC 149 ms
15,872 KB
testcase_27 AC 133 ms
13,824 KB
testcase_28 AC 140 ms
13,824 KB
testcase_29 AC 135 ms
13,824 KB
testcase_30 AC 141 ms
14,720 KB
testcase_31 AC 148 ms
16,000 KB
testcase_32 AC 154 ms
13,824 KB
testcase_33 AC 146 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7


def main():
    N, K = map(int, input().split())
    two = pow(2, K, mod)
    div2 = pow(two, mod-2, mod)

    m = pow(2, K - 1, N)
    d = (pow(2, K-1, mod) - m) * pow(N, mod-2, mod) % mod

    answer = [0] * N

    for i in range(N):
        j = (2 * i + 1) % N
        answer[j] += d
        answer[-j] += d

    for i in range(m):
        j = (2 * i + 1) % N
        answer[j] += 1
        answer[-j] += 1

    for i in range(N):
        print(answer[i] * div2 % mod)


main()
0