結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,308 KB
testcase_01 AC 35 ms
52,800 KB
testcase_02 AC 34 ms
52,492 KB
testcase_03 AC 34 ms
52,696 KB
testcase_04 AC 36 ms
52,288 KB
testcase_05 WA -
testcase_06 AC 32 ms
52,088 KB
testcase_07 AC 34 ms
52,360 KB
testcase_08 AC 33 ms
52,316 KB
testcase_09 AC 63 ms
75,700 KB
testcase_10 AC 48 ms
65,236 KB
testcase_11 AC 60 ms
69,612 KB
testcase_12 WA -
testcase_13 AC 74 ms
76,444 KB
testcase_14 AC 60 ms
76,048 KB
testcase_15 AC 59 ms
75,840 KB
testcase_16 AC 59 ms
75,716 KB
testcase_17 AC 34 ms
52,332 KB
testcase_18 AC 33 ms
53,056 KB
testcase_19 AC 34 ms
51,692 KB
testcase_20 AC 64 ms
75,608 KB
testcase_21 WA -
testcase_22 AC 68 ms
75,652 KB
testcase_23 AC 68 ms
75,916 KB
testcase_24 AC 64 ms
76,076 KB
testcase_25 AC 65 ms
75,776 KB
testcase_26 AC 75 ms
76,228 KB
testcase_27 AC 66 ms
76,024 KB
testcase_28 AC 69 ms
76,012 KB
testcase_29 AC 65 ms
75,876 KB
testcase_30 AC 80 ms
75,708 KB
testcase_31 AC 76 ms
75,992 KB
testcase_32 AC 65 ms
75,876 KB
testcase_33 AC 63 ms
75,768 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
		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