結果

問題 No.40 多項式の割り算
ユーザー d_nishiyama85d_nishiyama85
提出日時 2016-07-17 11:31:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 4,743 ms / 5,000 ms
コード長 539 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-10-15 15:19:12
合計ジャッジ時間 48,311 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,032 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 1,550 ms
78,976 KB
testcase_05 AC 2,460 ms
80,384 KB
testcase_06 AC 4,212 ms
76,888 KB
testcase_07 AC 4,684 ms
79,104 KB
testcase_08 AC 94 ms
12,416 KB
testcase_09 AC 2,151 ms
76,572 KB
testcase_10 AC 3,807 ms
77,012 KB
testcase_11 AC 1,333 ms
80,640 KB
testcase_12 AC 549 ms
37,760 KB
testcase_13 AC 3,703 ms
76,760 KB
testcase_14 AC 1,496 ms
78,720 KB
testcase_15 AC 1,476 ms
78,592 KB
testcase_16 AC 3,700 ms
76,736 KB
testcase_17 AC 361 ms
28,288 KB
testcase_18 AC 3,369 ms
74,600 KB
testcase_19 AC 4,743 ms
79,616 KB
testcase_20 AC 1,023 ms
77,440 KB
testcase_21 AC 260 ms
23,424 KB
testcase_22 AC 209 ms
18,304 KB
testcase_23 AC 965 ms
72,448 KB
testcase_24 AC 2,430 ms
79,616 KB
testcase_25 AC 85 ms
12,288 KB
testcase_26 AC 86 ms
12,288 KB
testcase_27 AC 84 ms
12,288 KB
testcase_28 AC 84 ms
12,160 KB
testcase_29 AC 84 ms
12,288 KB
testcase_30 AC 85 ms
12,288 KB
testcase_31 AC 87 ms
12,160 KB
testcase_32 AC 84 ms
12,032 KB
testcase_33 AC 81 ms
12,288 KB
testcase_34 AC 84 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:22: warning: assigned but unused variable - d
Syntax OK

ソースコード

diff #

require 'pp'

def divide(poly, div)
  c = poly[-1] / div[-1]
  _poly = []

  len = poly.length
  len.times{|d|
    if len - d < div.length
      _poly[d] = poly[d] - c * div[div.length - (len - d)]
    else
      _poly[d] = poly[d]
    end
  }
  while _poly[-1] == 0
    _poly.pop()
  end

  return _poly
end

d = gets.to_i
poly = gets.strip.split.map{|e| e.to_i}

div = [0, -1, 0, 1]

while div.length <= poly.length
  poly = divide(poly, div)
end

if poly.empty?
  puts 0
  puts 0
else
  puts (poly.length - 1)
  puts poly.join(' ')
end
0