結果

問題 No.25 有限小数
ユーザー cielciel
提出日時 2014-11-28 18:16:25
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 376 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,484 KB
最終ジャッジ日時 2024-06-11 04:46:25
合計ジャッジ時間 14,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,416 KB
testcase_01 AC 87 ms
12,288 KB
testcase_02 AC 87 ms
12,416 KB
testcase_03 AC 89 ms
12,544 KB
testcase_04 AC 92 ms
12,288 KB
testcase_05 AC 94 ms
12,544 KB
testcase_06 AC 89 ms
12,416 KB
testcase_07 AC 92 ms
12,416 KB
testcase_08 AC 90 ms
12,544 KB
testcase_09 AC 92 ms
12,288 KB
testcase_10 AC 92 ms
12,288 KB
testcase_11 AC 87 ms
12,544 KB
testcase_12 AC 89 ms
12,160 KB
testcase_13 AC 91 ms
12,288 KB
testcase_14 AC 90 ms
12,544 KB
testcase_15 AC 92 ms
12,416 KB
testcase_16 AC 91 ms
12,416 KB
testcase_17 AC 88 ms
12,416 KB
testcase_18 AC 89 ms
12,288 KB
testcase_19 AC 4,795 ms
12,672 KB
testcase_20 AC 98 ms
12,544 KB
testcase_21 AC 94 ms
12,416 KB
testcase_22 AC 86 ms
12,416 KB
testcase_23 AC 88 ms
12,288 KB
testcase_24 AC 86 ms
12,416 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
ruby: warning: shebang line ending with \r may cause problems
Main.rb:13: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
require 'rational'
require 'prime'
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=m.prime_division
if div.any?{|n,p|n!=2&&n!=5}
	p -1
	exit
end
div=Hash[*div.flatten(1)]
n%=10
(div[2]||0).times{|i|
	n*=5
	n = n%10==0 ? n/10 : n%10
}
(div[5]||0).times{|i|
	n*=2
	n = n%10==0 ? n/10 : n%10
}
p n
0