結果

問題 No.40 多項式の割り算
ユーザー あかりきあかりき
提出日時 2021-02-08 10:13:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 66,728 KB
最終ジャッジ日時 2024-07-05 06:27:12
合計ジャッジ時間 2,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 41 ms
61,696 KB
testcase_06 AC 42 ms
61,696 KB
testcase_07 AC 42 ms
62,208 KB
testcase_08 AC 38 ms
59,520 KB
testcase_09 AC 40 ms
61,312 KB
testcase_10 AC 41 ms
61,824 KB
testcase_11 AC 43 ms
61,184 KB
testcase_12 AC 40 ms
60,288 KB
testcase_13 AC 41 ms
61,784 KB
testcase_14 AC 41 ms
60,672 KB
testcase_15 AC 40 ms
60,784 KB
testcase_16 AC 41 ms
62,080 KB
testcase_17 AC 40 ms
60,316 KB
testcase_18 AC 41 ms
61,440 KB
testcase_19 AC 41 ms
61,952 KB
testcase_20 AC 40 ms
60,160 KB
testcase_21 AC 40 ms
59,904 KB
testcase_22 AC 39 ms
59,904 KB
testcase_23 AC 40 ms
60,544 KB
testcase_24 AC 42 ms
61,184 KB
testcase_25 AC 33 ms
52,096 KB
testcase_26 AC 32 ms
52,352 KB
testcase_27 AC 33 ms
51,584 KB
testcase_28 RE -
testcase_29 AC 33 ms
52,096 KB
testcase_30 AC 32 ms
52,564 KB
testcase_31 AC 33 ms
51,584 KB
testcase_32 RE -
testcase_33 AC 33 ms
52,096 KB
testcase_34 AC 33 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d=int(input())
a=list(map(int,input().split()))
a.reverse()
b=[1,0,-1,0]
for i in range(d-2):
  x=a[i]
  for j in range(4):
    a[i+j]-=x*b[j]
ans=[]
a.reverse()
for i in range(5):
  if a[i]==0:
    d2=i-1
    break
  else:
    ans.append(str(a[i]))
if d2==-1:
  print(0)
  print(0)
  exit()
print(d2)
print(' '.join(ans))
0