結果

問題 No.219 巨大数の概算
ユーザー NabetaniNabetani
提出日時 2015-10-25 00:18:28
言語 Ruby
(3.3.0)
結果
AC  
実行時間 311 ms / 1,500 ms
コード長 511 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-07-18 11:44:51
合計ジャッジ時間 16,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
12,672 KB
testcase_01 AC 293 ms
12,672 KB
testcase_02 AC 294 ms
12,416 KB
testcase_03 AC 290 ms
12,416 KB
testcase_04 AC 291 ms
12,544 KB
testcase_05 AC 77 ms
12,416 KB
testcase_06 AC 102 ms
12,672 KB
testcase_07 AC 83 ms
12,288 KB
testcase_08 AC 101 ms
12,544 KB
testcase_09 AC 77 ms
12,416 KB
testcase_10 AC 287 ms
12,416 KB
testcase_11 AC 302 ms
12,544 KB
testcase_12 AC 299 ms
12,672 KB
testcase_13 AC 287 ms
12,544 KB
testcase_14 AC 291 ms
12,416 KB
testcase_15 AC 291 ms
12,544 KB
testcase_16 AC 294 ms
12,416 KB
testcase_17 AC 293 ms
12,416 KB
testcase_18 AC 303 ms
12,544 KB
testcase_19 AC 293 ms
12,416 KB
testcase_20 AC 296 ms
12,544 KB
testcase_21 AC 292 ms
12,416 KB
testcase_22 AC 289 ms
12,672 KB
testcase_23 AC 291 ms
12,416 KB
testcase_24 AC 302 ms
12,544 KB
testcase_25 AC 297 ms
12,544 KB
testcase_26 AC 294 ms
12,672 KB
testcase_27 AC 303 ms
12,544 KB
testcase_28 AC 298 ms
12,544 KB
testcase_29 AC 287 ms
12,544 KB
testcase_30 AC 295 ms
12,544 KB
testcase_31 AC 293 ms
12,416 KB
testcase_32 AC 290 ms
12,416 KB
testcase_33 AC 297 ms
12,672 KB
testcase_34 AC 293 ms
12,544 KB
testcase_35 AC 292 ms
12,416 KB
testcase_36 AC 291 ms
12,544 KB
testcase_37 AC 296 ms
12,672 KB
testcase_38 AC 290 ms
12,416 KB
testcase_39 AC 301 ms
12,544 KB
testcase_40 AC 311 ms
12,672 KB
testcase_41 AC 290 ms
12,544 KB
testcase_42 AC 294 ms
12,672 KB
testcase_43 AC 311 ms
12,672 KB
testcase_44 AC 288 ms
12,416 KB
testcase_45 AC 299 ms
12,544 KB
testcase_46 AC 298 ms
12,416 KB
testcase_47 AC 293 ms
12,544 KB
testcase_48 AC 297 ms
12,416 KB
testcase_49 AC 300 ms
12,672 KB
testcase_50 AC 290 ms
12,544 KB
testcase_51 AC 77 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def calc(a, e, b)
  case b
  when 0
    return [1, 0, 1]
  when 1
    return [a, e, 1]
  end
  x=calc(a, e, b/2)
  y=b.even? ? [ 1, 0, 1 ] : [a, e, 1]
  xy=[x[0]*x[0]*y[0], x[1]*2+y[1], 1]
  po=Math.log10(xy[0]).floor
  [xy[0]/10.0**po, xy[1]+ po, 1]
end

def solve_impl( a, b )
  v=calc(a, 0, b)
  x, y = (v[0]*10).floor.to_s.chars
  [x, y, v[1]]
end

def solve2(input)
  n=input.gets.to_i
  n.times do
    q=input.gets.split(/\s+/).map(&:to_i)
    puts( solve_impl( *q ).join(" ") )
  end
end

solve2($stdin)
0