結果
問題 | No.2966 Simple Plus Minus Problem |
ユーザー | hato336 |
提出日時 | 2024-11-16 16:43:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,152 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 252,164 KB |
最終ジャッジ日時 | 2024-11-16 16:43:42 |
合計ジャッジ時間 | 16,493 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,224 KB |
testcase_01 | AC | 41 ms
51,968 KB |
testcase_02 | AC | 40 ms
52,352 KB |
testcase_03 | AC | 353 ms
191,636 KB |
testcase_04 | AC | 485 ms
234,180 KB |
testcase_05 | AC | 40 ms
51,968 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 40 ms
51,968 KB |
testcase_33 | AC | 39 ms
51,968 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | AC | 500 ms
252,164 KB |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
ソースコード
n,k = map(int,input().split()) a = list(map(int,input().split())) aa = a[:] c = [a[:]] import itertools for i in range(10): b = [a[j] if j % 2 == 0 else -a[j] for j in range(n)] a = list(itertools.accumulate(b)) c.append(a) #print(*a) a = aa[:] mod = 998244353 ans = [] for i in range(n): if 0: x = c[1][i] - c[0][i] y = c[3][i] - c[2][i] cnt = (k//2) + (k % 2) d = y-x res = x * cnt + d * ((1+cnt-1)*(cnt-1)//2) x = c[2][i] - c[1][i] y = c[4][i] - c[3][i] cnt = (k//2) d = abs(y-x) print(i,x,y,d,cnt) res += (x * cnt + d * ((1+cnt-1)*(cnt-1)//2) + a[i]) % mod ans.append(res%mod) else: x = c[1][i] - c[0][i] y = c[3][i] - c[2][i] cnt = (k//2) + (k % 2) d = y-x res = x * cnt + d * ((1+cnt-1)*(cnt-1)//2) x = c[2][i] - c[1][i] y = c[4][i] - c[3][i] cnt = (k//2) d = y-x res += (x * cnt + d * ((1+cnt-1)*(cnt-1)//2) + a[i]) % mod ans.append(res%mod) print(*ans) -20 20 -20 20 -6 8 -9 11 -12 14 -2 6 -3 8 -4 10 -5 12 -6