結果

問題 No.25 有限小数
ユーザー scachescache
提出日時 2014-11-15 10:31:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 838 bytes
コンパイル時間 3,350 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-06-10 02:55:51
合計ジャッジ時間 8,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,112 KB
testcase_01 AC 136 ms
53,864 KB
testcase_02 AC 138 ms
53,768 KB
testcase_03 AC 137 ms
54,032 KB
testcase_04 AC 134 ms
54,152 KB
testcase_05 AC 132 ms
54,120 KB
testcase_06 AC 134 ms
53,984 KB
testcase_07 AC 132 ms
54,120 KB
testcase_08 AC 134 ms
53,952 KB
testcase_09 AC 134 ms
53,876 KB
testcase_10 AC 132 ms
54,068 KB
testcase_11 AC 142 ms
54,168 KB
testcase_12 AC 136 ms
54,308 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 138 ms
54,492 KB
testcase_16 WA -
testcase_17 AC 142 ms
54,184 KB
testcase_18 WA -
testcase_19 AC 133 ms
54,260 KB
testcase_20 AC 134 ms
54,100 KB
testcase_21 AC 133 ms
53,844 KB
testcase_22 AC 136 ms
54,100 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 141 ms
54,264 KB
testcase_26 AC 135 ms
53,860 KB
testcase_27 AC 133 ms
54,076 KB
testcase_28 AC 135 ms
54,280 KB
testcase_29 AC 142 ms
53,984 KB
testcase_30 AC 132 ms
53,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

/**
 * yukicoder no.25
 * @author scache
 *
 */
public class FiniteDecimal {
	public static void main(String[] args) {
		FiniteDecimal p = new FiniteDecimal();
	}

	public FiniteDecimal() {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		long m = sc.nextLong();
		
		System.out.println(solve(n, m));
	}

	public int solve(long n, long m) {
		long g = gcd(n, m);
		m /= g;
		
		
		n = n/g;
		while(n%10 == 0)
			n /= 10;
		
//		System.out.println(n +" " + n +" "+m);
		long res = n % 10;

		while(m%2==0){
			res *= 5;
			m /= 2;
		}
		while(m%5==0){
			res *= 2;
			m /= 5;
		}
			
		if(m==1)
			return (int)res%10;
		else
			return -1;
	}
	
	private long gcd(long a, long b){
		if(b==0)
			return a;
		else
			return gcd(b, a%b);
	}
}
0