結果

問題 No.2966 Simple Plus Minus Problem
ユーザー ねしんねしん
提出日時 2024-10-21 22:12:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 173 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 112,492 KB
最終ジャッジ日時 2024-10-30 08:23:50
合計ジャッジ時間 10,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,304 KB
testcase_01 AC 35 ms
52,248 KB
testcase_02 AC 189 ms
59,588 KB
testcase_03 AC 110 ms
103,140 KB
testcase_04 AC 119 ms
105,544 KB
testcase_05 AC 36 ms
53,088 KB
testcase_06 AC 45 ms
59,980 KB
testcase_07 AC 124 ms
65,748 KB
testcase_08 AC 108 ms
65,248 KB
testcase_09 AC 69 ms
65,608 KB
testcase_10 AC 41 ms
59,248 KB
testcase_11 AC 97 ms
66,632 KB
testcase_12 AC 57 ms
60,660 KB
testcase_13 AC 117 ms
66,764 KB
testcase_14 AC 47 ms
60,936 KB
testcase_15 AC 71 ms
62,372 KB
testcase_16 AC 43 ms
59,688 KB
testcase_17 AC 161 ms
66,088 KB
testcase_18 AC 43 ms
59,604 KB
testcase_19 AC 62 ms
66,500 KB
testcase_20 AC 65 ms
66,420 KB
testcase_21 AC 52 ms
61,264 KB
testcase_22 AC 42 ms
59,444 KB
testcase_23 AC 72 ms
64,276 KB
testcase_24 AC 703 ms
69,148 KB
testcase_25 AC 243 ms
68,012 KB
testcase_26 AC 67 ms
65,180 KB
testcase_27 AC 552 ms
69,324 KB
testcase_28 AC 53 ms
65,828 KB
testcase_29 AC 173 ms
67,948 KB
testcase_30 AC 49 ms
61,832 KB
testcase_31 AC 275 ms
66,148 KB
testcase_32 AC 425 ms
59,064 KB
testcase_33 AC 189 ms
58,192 KB
testcase_34 TLE -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=list(map(int,input().split()))
A=list(map(int,input().split()))
MOD=998244353
P=A
for i in range(K):
	for j in range(1,N):
		P[j]=(P[j-1]+P[j]*(-1)**(j%2))%MOD
print(*P)
0