結果

問題 No.25 有限小数
ユーザー scachescache
提出日時 2014-11-15 10:43:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 979 bytes
コンパイル時間 2,864 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-06-10 02:56:11
合計ジャッジ時間 7,328 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,864 KB
testcase_01 AC 104 ms
52,960 KB
testcase_02 AC 105 ms
52,524 KB
testcase_03 AC 113 ms
54,000 KB
testcase_04 AC 108 ms
53,072 KB
testcase_05 AC 116 ms
54,172 KB
testcase_06 AC 119 ms
53,412 KB
testcase_07 AC 116 ms
53,896 KB
testcase_08 AC 111 ms
53,960 KB
testcase_09 AC 112 ms
54,172 KB
testcase_10 AC 115 ms
53,796 KB
testcase_11 AC 114 ms
53,852 KB
testcase_12 AC 114 ms
54,016 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 118 ms
53,672 KB
testcase_16 WA -
testcase_17 AC 129 ms
54,236 KB
testcase_18 AC 124 ms
54,136 KB
testcase_19 AC 126 ms
54,024 KB
testcase_20 AC 106 ms
52,836 KB
testcase_21 AC 122 ms
54,192 KB
testcase_22 AC 117 ms
54,108 KB
testcase_23 AC 103 ms
54,148 KB
testcase_24 AC 120 ms
53,928 KB
testcase_25 AC 118 ms
53,828 KB
testcase_26 AC 122 ms
54,276 KB
testcase_27 AC 117 ms
54,068 KB
testcase_28 AC 117 ms
53,796 KB
testcase_29 AC 116 ms
53,600 KB
testcase_30 AC 103 ms
52,940 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 /= g;
		
		while(n%10 == 0)
			n /= 10;
		
//		System.out.println(n +" " + n +" "+m);
		long res = n % 10;

		
		while(m%10==0)
			m /= 10;
		
		while(m%2==0){
			res *= 5;
			res %= 1000000000000000000L;
			m /= 2;
			
//			System.out.println(res);
		}
		while(m%5==0){
			res *= 2;
			res %= 1000000000000000000L;
			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