結果

問題 No.2506 Sum of Weighted Powers
ユーザー suisensuisen
提出日時 2023-03-22 01:55:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 315 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,808 KB
最終ジャッジ日時 2024-09-22 23:46:10
合計ジャッジ時間 12,122 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,600 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 200 ms
60,672 KB
testcase_04 AC 57 ms
59,008 KB
testcase_05 AC 51 ms
58,752 KB
testcase_06 AC 554 ms
62,208 KB
testcase_07 AC 133 ms
60,544 KB
testcase_08 AC 1,358 ms
62,848 KB
testcase_09 AC 310 ms
60,800 KB
testcase_10 AC 991 ms
62,976 KB
testcase_11 AC 1,123 ms
62,720 KB
testcase_12 AC 49 ms
58,624 KB
testcase_13 AC 126 ms
60,544 KB
testcase_14 AC 50 ms
58,880 KB
testcase_15 AC 52 ms
59,008 KB
testcase_16 AC 84 ms
60,288 KB
testcase_17 AC 182 ms
60,800 KB
testcase_18 AC 401 ms
60,800 KB
testcase_19 AC 77 ms
59,776 KB
testcase_20 AC 208 ms
60,672 KB
testcase_21 AC 1,062 ms
62,848 KB
testcase_22 AC 326 ms
60,800 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 943718401

n, x = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = list(map(int, input().split()))

ans = 0

for j in range(n + 1):
    for k in range(n + 1 - j):
        ans += A[j + k] * B[j] % P * C[k] % P * pow(x, (j + k) * j * k, P) % P

print(ans % P)
0