結果

問題 No.1521 Playing Musical Chairs Alone
ユーザー mkawa2mkawa2
提出日時 2021-05-28 21:58:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,129 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 67,000 KB
最終ジャッジ日時 2024-11-07 09:28:08
合計ジャッジ時間 2,375 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,592 KB
testcase_01 AC 40 ms
52,552 KB
testcase_02 AC 45 ms
59,944 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 50 ms
60,880 KB
testcase_06 AC 49 ms
61,624 KB
testcase_07 AC 50 ms
61,768 KB
testcase_08 AC 47 ms
60,880 KB
testcase_09 AC 49 ms
61,316 KB
testcase_10 AC 44 ms
59,124 KB
testcase_11 AC 50 ms
62,180 KB
testcase_12 AC 39 ms
52,896 KB
testcase_13 RE -
testcase_14 AC 43 ms
59,028 KB
testcase_15 AC 51 ms
62,716 KB
testcase_16 AC 51 ms
62,200 KB
testcase_17 AC 51 ms
62,696 KB
testcase_18 AC 51 ms
62,500 KB
testcase_19 AC 52 ms
62,840 KB
testcase_20 AC 51 ms
62,156 KB
testcase_21 AC 50 ms
61,536 KB
testcase_22 RE -
testcase_23 AC 50 ms
62,608 KB
testcase_24 AC 51 ms
62,064 KB
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

def merge(aa, bb):
    res = [0]*n
    for i, a in enumerate(aa):
        for j, b in enumerate(bb):
            res[(i+j)%n] = (a*b+res[(i+j)%n])%md
    return res

n, k, l = LI()
base = [0]*n
for i in range(1, l+1): base[i] = 1
if n == l: base[0] = 1
ans = [1]+[0]*(n-1)
while k:
    if k & 1: ans = merge(ans, base)
    base = merge(base, base)
    k >>= 1

print(*ans,sep="\n")
0