結果

問題 No.40 多項式の割り算
ユーザー 👑 KazunKazun
提出日時 2020-10-03 20:08:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 296 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 61,684 KB
最終ジャッジ日時 2024-07-18 05:24:43
合計ジャッジ時間 2,822 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,360 KB
testcase_01 AC 38 ms
53,080 KB
testcase_02 AC 39 ms
53,268 KB
testcase_03 AC 38 ms
53,144 KB
testcase_04 AC 43 ms
59,916 KB
testcase_05 AC 43 ms
59,912 KB
testcase_06 AC 42 ms
60,404 KB
testcase_07 AC 43 ms
60,948 KB
testcase_08 AC 40 ms
58,280 KB
testcase_09 AC 42 ms
59,784 KB
testcase_10 AC 43 ms
60,992 KB
testcase_11 AC 43 ms
60,088 KB
testcase_12 AC 42 ms
59,224 KB
testcase_13 AC 43 ms
60,520 KB
testcase_14 AC 43 ms
61,008 KB
testcase_15 AC 43 ms
59,800 KB
testcase_16 AC 43 ms
61,016 KB
testcase_17 AC 42 ms
59,276 KB
testcase_18 AC 43 ms
61,684 KB
testcase_19 AC 43 ms
60,692 KB
testcase_20 AC 43 ms
59,876 KB
testcase_21 AC 42 ms
59,748 KB
testcase_22 AC 43 ms
59,696 KB
testcase_23 AC 43 ms
60,544 KB
testcase_24 AC 43 ms
60,336 KB
testcase_25 AC 38 ms
52,892 KB
testcase_26 AC 38 ms
53,424 KB
testcase_27 AC 38 ms
53,048 KB
testcase_28 AC 38 ms
53,144 KB
testcase_29 AC 38 ms
53,044 KB
testcase_30 AC 38 ms
52,616 KB
testcase_31 AC 38 ms
53,488 KB
testcase_32 AC 38 ms
52,088 KB
testcase_33 AC 39 ms
53,084 KB
testcase_34 AC 38 ms
52,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(A,x):
    c=1
    K=0
    for a in A:
        K+=a*c
        c*=x
    return K

D=int(input())
A=list(map(int,input().split()))

s=f(A,0)
t=f(A,1)
u=f(A,-1)

a=(t+u)//2-s
b=(t-u)//2
c=s

if a:
    print(2)
    print(c,b,a)
elif b:
    print(1)
    print(c,b)
else:
    print(0)
    print(c)
0