結果

問題 No.2272 多項式乗算 mod 258280327
ユーザー kano_suurikano_suuri
提出日時 2023-04-14 23:15:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 439 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,924 KB
実行使用メモリ 82,972 KB
最終ジャッジ日時 2024-10-10 14:21:46
合計ジャッジ時間 6,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,992 KB
testcase_01 AC 35 ms
52,012 KB
testcase_02 AC 35 ms
52,208 KB
testcase_03 AC 34 ms
53,632 KB
testcase_04 AC 34 ms
52,828 KB
testcase_05 AC 34 ms
52,892 KB
testcase_06 AC 34 ms
52,520 KB
testcase_07 AC 34 ms
52,712 KB
testcase_08 AC 35 ms
52,204 KB
testcase_09 AC 35 ms
52,528 KB
testcase_10 AC 34 ms
53,068 KB
testcase_11 AC 35 ms
53,064 KB
testcase_12 AC 34 ms
52,340 KB
testcase_13 AC 35 ms
52,440 KB
testcase_14 AC 34 ms
52,984 KB
testcase_15 AC 35 ms
53,312 KB
testcase_16 AC 36 ms
53,128 KB
testcase_17 AC 36 ms
52,812 KB
testcase_18 AC 35 ms
53,684 KB
testcase_19 AC 36 ms
52,240 KB
testcase_20 AC 34 ms
52,192 KB
testcase_21 AC 39 ms
58,880 KB
testcase_22 AC 40 ms
58,900 KB
testcase_23 AC 41 ms
60,144 KB
testcase_24 AC 93 ms
64,552 KB
testcase_25 AC 825 ms
72,460 KB
testcase_26 AC 810 ms
72,964 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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