結果

問題 No.1419 Power Moves
ユーザー nephrologistnephrologist
提出日時 2021-03-05 23:17:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,310 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 77,236 KB
最終ジャッジ日時 2024-10-07 04:52:58
合計ジャッジ時間 3,676 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,336 KB
testcase_01 AC 34 ms
52,892 KB
testcase_02 AC 37 ms
53,624 KB
testcase_03 AC 36 ms
51,944 KB
testcase_04 AC 37 ms
53,032 KB
testcase_05 AC 35 ms
52,284 KB
testcase_06 AC 36 ms
52,272 KB
testcase_07 AC 37 ms
52,316 KB
testcase_08 AC 37 ms
52,192 KB
testcase_09 AC 63 ms
76,872 KB
testcase_10 AC 50 ms
63,400 KB
testcase_11 AC 53 ms
66,388 KB
testcase_12 AC 65 ms
76,416 KB
testcase_13 AC 61 ms
76,452 KB
testcase_14 AC 61 ms
76,864 KB
testcase_15 AC 63 ms
77,044 KB
testcase_16 AC 65 ms
76,840 KB
testcase_17 AC 37 ms
53,256 KB
testcase_18 AC 34 ms
52,428 KB
testcase_19 AC 35 ms
53,372 KB
testcase_20 AC 65 ms
76,824 KB
testcase_21 AC 67 ms
77,040 KB
testcase_22 AC 65 ms
76,932 KB
testcase_23 AC 64 ms
76,780 KB
testcase_24 AC 63 ms
77,168 KB
testcase_25 AC 64 ms
76,672 KB
testcase_26 AC 66 ms
77,236 KB
testcase_27 AC 67 ms
76,748 KB
testcase_28 AC 69 ms
76,608 KB
testcase_29 AC 65 ms
77,100 KB
testcase_30 AC 67 ms
76,632 KB
testcase_31 AC 66 ms
76,980 KB
testcase_32 AC 65 ms
76,740 KB
testcase_33 AC 66 ms
76,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# for n in range(5):
#     kouho = []
#     for i in range(1 << n):
#         res = 0
#         for j in range(n):
#             if (i >> j) & 1:
#                 res += pow(2, j)
#             else:
#                 res -= pow(2, j)
#         kouho.append(res)
#     print(kouho)

mod = 10 ** 9 + 7

n, k = map(int, input().split())

ans = [0] * n

if n % 2:
    # 奇数
    rui = pow(2, k - 1, n * mod)
    num, rem = rui // n, rui % n

    for i in range(n):
        temp = (2 * i + 1) % n
        ans[temp] += 1
        ans[-temp] += 1
    for i in range(n):
        ans[i] *= num
    for i in range(rem):
        temp = (2 * i + 1) % n
        ans[temp] += 1
        ans[-temp] += 1
    inv = pow(2, k, mod)
    inv = pow(inv, mod - 2, mod)
    for a in ans:
        res = a % mod
        res *= inv
        print(res % mod)
else:
    # 奇数
    rui = pow(2, k - 1, n * mod)
    num, rem = rui // n, rui % n

    for i in range(n):
        temp = (2 * i + 1) % n
        ans[temp] += 1
        ans[-temp] += 1
    for i in range(n):
        ans[i] *= num
    for i in range(rem):
        temp = (2 * i + 1) % n
        ans[temp] += 1
        ans[-temp] += 1
    inv = pow(2, k, mod)
    inv = pow(inv, mod - 2, mod)
    for a in ans:
        res = a % mod
        res *= inv
        print(res % mod)
0