結果

問題 No.219 巨大数の概算
ユーザー Lycoris_iLycoris_i
提出日時 2015-09-09 00:35:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 138 ms / 1,500 ms
コード長 207 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-07-18 11:40:14
合計ジャッジ時間 8,714 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
12,928 KB
testcase_01 AC 126 ms
13,056 KB
testcase_02 AC 127 ms
12,928 KB
testcase_03 AC 125 ms
12,928 KB
testcase_04 AC 110 ms
12,928 KB
testcase_05 AC 76 ms
12,544 KB
testcase_06 AC 83 ms
12,800 KB
testcase_07 AC 76 ms
12,288 KB
testcase_08 AC 86 ms
12,672 KB
testcase_09 AC 85 ms
12,416 KB
testcase_10 AC 132 ms
13,056 KB
testcase_11 AC 129 ms
12,928 KB
testcase_12 AC 134 ms
12,928 KB
testcase_13 AC 126 ms
12,800 KB
testcase_14 AC 127 ms
13,056 KB
testcase_15 AC 130 ms
12,928 KB
testcase_16 AC 133 ms
13,184 KB
testcase_17 AC 132 ms
12,928 KB
testcase_18 AC 127 ms
12,928 KB
testcase_19 AC 124 ms
13,056 KB
testcase_20 AC 132 ms
12,800 KB
testcase_21 AC 128 ms
13,056 KB
testcase_22 AC 130 ms
12,928 KB
testcase_23 AC 129 ms
12,928 KB
testcase_24 AC 130 ms
13,056 KB
testcase_25 AC 127 ms
12,928 KB
testcase_26 AC 128 ms
13,056 KB
testcase_27 AC 127 ms
12,928 KB
testcase_28 AC 127 ms
13,056 KB
testcase_29 AC 129 ms
13,056 KB
testcase_30 AC 126 ms
13,056 KB
testcase_31 AC 127 ms
12,928 KB
testcase_32 AC 128 ms
13,056 KB
testcase_33 AC 124 ms
13,056 KB
testcase_34 AC 138 ms
13,056 KB
testcase_35 AC 133 ms
12,800 KB
testcase_36 AC 129 ms
12,928 KB
testcase_37 AC 127 ms
13,056 KB
testcase_38 AC 128 ms
12,928 KB
testcase_39 AC 127 ms
12,800 KB
testcase_40 AC 132 ms
13,056 KB
testcase_41 AC 129 ms
13,056 KB
testcase_42 AC 131 ms
12,800 KB
testcase_43 AC 128 ms
13,056 KB
testcase_44 AC 126 ms
12,928 KB
testcase_45 AC 130 ms
12,928 KB
testcase_46 AC 125 ms
12,928 KB
testcase_47 AC 130 ms
12,928 KB
testcase_48 AC 131 ms
13,056 KB
testcase_49 AC 125 ms
13,056 KB
testcase_50 AC 125 ms
13,056 KB
testcase_51 AC 79 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = Array.new
n.times { a << gets.split(" ").map(&:to_i) }
a.each {|b|
  z = (b[1] * Math.log10(b[0])).floor
  xy = (10 ** (b[1] * Math.log10(b[0]) - z)).to_s
  puts "#{xy[0]} #{xy[2]} #{z}"
}
0