結果
問題 | No.40 多項式の割り算 |
ユーザー | ciel |
提出日時 | 2014-11-16 22:03:41 |
言語 | Ruby (3.3.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 420 bytes |
コンパイル時間 | 36 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 88,864 KB |
最終ジャッジ日時 | 2024-06-10 07:57:14 |
合計ジャッジ時間 | 18,300 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
12,160 KB |
testcase_01 | AC | 75 ms
12,288 KB |
testcase_02 | AC | 74 ms
12,160 KB |
testcase_03 | AC | 74 ms
12,288 KB |
testcase_04 | AC | 2,091 ms
77,596 KB |
testcase_05 | AC | 3,479 ms
83,712 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
コンパイルメッセージ
ruby: warning: shebang line ending with \r may cause problems Syntax OK
ソースコード
#!/usr/bin/ruby def sub(a,b) m=[a.size,b.size].max m.times.map{|i|(a[i]||0) - (b[i]||0)} end def checkio(exp,div) c=[] while div.size<=exp.size d=exp[-1]/div[-1] c.push(d) exp=sub(exp,[0]*(exp.size-div.size)+div.map{|e|e*d}) #assert exp[-1]==0 exp.pop end exp.pop() while exp.size>1 && exp[-1]==0 puts exp.size-1 puts exp*' ' end gets checkio(gets.split.map(&:to_i),[0,-1,0,1])