結果

問題 No.2272 多項式乗算 mod 258280327
ユーザー kano_suurikano_suuri
提出日時 2023-04-14 23:19:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 490 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 50,656 KB
最終ジャッジ日時 2024-10-10 14:27:30
合計ジャッジ時間 18,052 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 520 ms
49,608 KB
testcase_01 AC 520 ms
44,100 KB
testcase_02 AC 518 ms
44,240 KB
testcase_03 AC 519 ms
44,100 KB
testcase_04 AC 529 ms
43,976 KB
testcase_05 AC 525 ms
44,096 KB
testcase_06 AC 519 ms
43,968 KB
testcase_07 AC 520 ms
43,976 KB
testcase_08 AC 523 ms
44,364 KB
testcase_09 AC 521 ms
44,232 KB
testcase_10 AC 529 ms
44,228 KB
testcase_11 AC 525 ms
44,236 KB
testcase_12 AC 533 ms
44,232 KB
testcase_13 AC 531 ms
44,104 KB
testcase_14 AC 535 ms
44,232 KB
testcase_15 AC 523 ms
44,364 KB
testcase_16 AC 526 ms
43,968 KB
testcase_17 AC 521 ms
44,232 KB
testcase_18 AC 527 ms
43,968 KB
testcase_19 AC 523 ms
44,488 KB
testcase_20 AC 521 ms
43,976 KB
testcase_21 AC 532 ms
44,096 KB
testcase_22 AC 538 ms
44,096 KB
testcase_23 AC 530 ms
44,232 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
degF = int(input())
F = list(map(int, input().split()))
degG = int(input())
G = list(map(int, input().split()))
L = degF + degG + 1
ans = [0]*L
F = np.array(F)
G = np.array(G)

for i in range(degF+1):
    for j in range(degG+1):
        ans[i+j] += (F[i]% 258280327)*(G[j] % 258280327)
for _ in range(L):
    ans[_] = str(ans[_] % 258280327)
if (degF == 0 and F[0] == 0) or (degG ==0 and G[0] == 0):
    print(0)
    print(0)
else:
    print(L-1)
    print(" ".join(ans))
0