結果

問題 No.1419 Power Moves
ユーザー 👑 potato167potato167
提出日時 2022-02-17 01:42:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 76,384 KB
最終ジャッジ日時 2024-06-29 07:24:50
合計ジャッジ時間 3,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,448 KB
testcase_01 AC 34 ms
52,200 KB
testcase_02 AC 32 ms
52,800 KB
testcase_03 AC 32 ms
52,328 KB
testcase_04 AC 32 ms
52,244 KB
testcase_05 AC 32 ms
52,764 KB
testcase_06 AC 32 ms
52,336 KB
testcase_07 AC 32 ms
51,496 KB
testcase_08 AC 36 ms
53,348 KB
testcase_09 AC 64 ms
76,248 KB
testcase_10 AC 47 ms
64,380 KB
testcase_11 AC 54 ms
69,736 KB
testcase_12 AC 73 ms
76,384 KB
testcase_13 AC 73 ms
76,068 KB
testcase_14 AC 58 ms
76,172 KB
testcase_15 AC 57 ms
76,000 KB
testcase_16 AC 60 ms
75,472 KB
testcase_17 AC 33 ms
52,752 KB
testcase_18 AC 35 ms
52,524 KB
testcase_19 AC 34 ms
52,740 KB
testcase_20 AC 65 ms
76,312 KB
testcase_21 AC 71 ms
76,188 KB
testcase_22 AC 64 ms
75,656 KB
testcase_23 AC 65 ms
75,632 KB
testcase_24 AC 66 ms
75,516 KB
testcase_25 AC 66 ms
75,720 KB
testcase_26 AC 81 ms
76,000 KB
testcase_27 AC 64 ms
75,904 KB
testcase_28 AC 66 ms
76,016 KB
testcase_29 AC 66 ms
76,128 KB
testcase_30 AC 75 ms
76,168 KB
testcase_31 AC 76 ms
76,356 KB
testcase_32 AC 64 ms
75,896 KB
testcase_33 AC 65 ms
75,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
MOD=10**9+7
R=pow(2,MOD-1-K,MOD)
M=N
if M%2==0:
	M//=2
A=pow(2,K-1,M)+M
A%=M
B=pow(2,K-1,MOD)-A
B*=pow(M,MOD-2,MOD)
B%=MOD
for i in range(N):
	if N%2==0 and i%2==0:
		print(0)
	else:
		D=i+1
		if i==0:
			D=N+1
		E=N-i+1
		if D%2==1:
			D+=N
		if E%2==1:
			E+=N
		D//=2
		E//=2
		#print(M,D,E)
		ans=B*2
		if A>=D:
			ans+=1
		if A>=E:
			ans+=1
		print((ans*R)%MOD)
0