結果

問題 No.25 有限小数
ユーザー cielciel
提出日時 2014-11-28 18:20:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 11,396 KB
実行使用メモリ 15,368 KB
最終ジャッジ日時 2023-08-26 23:09:29
合計ジャッジ時間 4,069 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
15,268 KB
testcase_01 AC 81 ms
15,292 KB
testcase_02 AC 79 ms
15,168 KB
testcase_03 AC 81 ms
15,300 KB
testcase_04 AC 80 ms
15,268 KB
testcase_05 AC 81 ms
15,148 KB
testcase_06 AC 79 ms
15,128 KB
testcase_07 AC 79 ms
15,244 KB
testcase_08 AC 80 ms
15,108 KB
testcase_09 AC 80 ms
15,180 KB
testcase_10 AC 79 ms
15,128 KB
testcase_11 AC 81 ms
15,100 KB
testcase_12 AC 80 ms
15,120 KB
testcase_13 AC 79 ms
15,168 KB
testcase_14 AC 80 ms
15,316 KB
testcase_15 AC 81 ms
15,140 KB
testcase_16 AC 81 ms
15,236 KB
testcase_17 AC 80 ms
15,212 KB
testcase_18 AC 81 ms
15,216 KB
testcase_19 AC 80 ms
15,312 KB
testcase_20 AC 80 ms
15,264 KB
testcase_21 AC 81 ms
15,084 KB
testcase_22 AC 80 ms
15,308 KB
testcase_23 AC 80 ms
15,180 KB
testcase_24 AC 78 ms
15,272 KB
testcase_25 AC 79 ms
15,328 KB
testcase_26 AC 79 ms
15,120 KB
testcase_27 AC 79 ms
15,148 KB
testcase_28 AC 80 ms
15,368 KB
testcase_29 AC 79 ms
15,192 KB
testcase_30 AC 78 ms
15,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/usr/bin/ruby: warning: shebang line ending with \r may cause problems
Main.rb:20: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
require 'rational'
n=gets.to_i
m=gets.to_i
g=n.gcd(m)
n/=g
m/=g
n/=10 while n%10==0
m/=10 while m%10==0
div=Hash.new(0)
while m%2==0
	m/=2
	div[2]+=1
end
while m%5==0
	m/=5
	div[5]+=1
end
if m!=1
	p -1
	exit
end
n%=10
div[2].times{|i|
	n*=5
	n = n%10==0 ? n/10 : n%10
}
div[5].times{|i|
	n*=2
	n = n%10==0 ? n/10 : n%10
}
p n
0