結果

問題 No.25 有限小数
ユーザー kano_townkano_town
提出日時 2014-11-22 21:05:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 720 bytes
コンパイル時間 3,059 ms
コンパイル使用メモリ 74,260 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-06-10 21:34:55
合計ジャッジ時間 8,199 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,564 KB
testcase_01 AC 127 ms
41,268 KB
testcase_02 AC 117 ms
41,704 KB
testcase_03 AC 106 ms
41,200 KB
testcase_04 AC 119 ms
41,372 KB
testcase_05 AC 123 ms
41,224 KB
testcase_06 AC 120 ms
41,644 KB
testcase_07 AC 114 ms
41,344 KB
testcase_08 AC 105 ms
41,248 KB
testcase_09 AC 120 ms
41,460 KB
testcase_10 AC 101 ms
41,616 KB
testcase_11 AC 107 ms
41,180 KB
testcase_12 WA -
testcase_13 AC 122 ms
41,440 KB
testcase_14 AC 118 ms
41,320 KB
testcase_15 AC 107 ms
41,500 KB
testcase_16 AC 129 ms
41,500 KB
testcase_17 AC 129 ms
41,432 KB
testcase_18 AC 108 ms
41,336 KB
testcase_19 AC 131 ms
41,700 KB
testcase_20 AC 131 ms
41,316 KB
testcase_21 AC 107 ms
41,500 KB
testcase_22 AC 116 ms
41,176 KB
testcase_23 AC 116 ms
41,604 KB
testcase_24 AC 110 ms
41,312 KB
testcase_25 AC 126 ms
41,416 KB
testcase_26 AC 119 ms
41,128 KB
testcase_27 AC 121 ms
41,356 KB
testcase_28 AC 142 ms
41,744 KB
testcase_29 AC 143 ms
41,028 KB
testcase_30 AC 146 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder25 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long M = sc.nextLong();

		long div;
		while ((div = gcd(N, M)) != 1) {
			N /= div;
			M /= div;
		}
		while (M % 10L == 0L) M /= 10;

		N = N % 10 == 0 ? 1 : N % 10;
		while (M % 5L == 0L) {
			M /= 5;
			N = N * 2 % 10;
		}
		while (M % 2L == 0L) {
			M /= 2;
			N = 5;
		}
		N = M == 1 ? N : -1;
		System.out.println(N);

	}

	static long gcd(long a, long b) {
		long c, tmp;

		if (a < b) {
			tmp = a;
			a = b;
			b = tmp;
		}

		while (b != 0) {
			c = a % b;
			a = b;
			b = c;
		}
		return a;
	}
}
0