結果

問題 No.415 ぴょん
ユーザー 37zigen37zigen
提出日時 2016-08-24 17:11:49
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 764 bytes
コンパイル時間 3,536 ms
コンパイル使用メモリ 77,524 KB
実行使用メモリ 61,672 KB
最終ジャッジ日時 2024-11-08 02:04:15
合計ジャッジ時間 9,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
46,208 KB
testcase_01 AC 123 ms
40,176 KB
testcase_02 AC 137 ms
41,056 KB
testcase_03 AC 136 ms
41,184 KB
testcase_04 AC 135 ms
41,416 KB
testcase_05 AC 120 ms
40,164 KB
testcase_06 AC 134 ms
41,324 KB
testcase_07 AC 121 ms
40,164 KB
testcase_08 AC 134 ms
41,080 KB
testcase_09 AC 134 ms
40,968 KB
testcase_10 AC 136 ms
41,328 KB
testcase_11 AC 134 ms
41,056 KB
testcase_12 AC 137 ms
41,208 KB
testcase_13 AC 133 ms
41,136 KB
testcase_14 AC 123 ms
41,168 KB
testcase_15 AC 134 ms
41,456 KB
testcase_16 AC 133 ms
41,160 KB
testcase_17 AC 119 ms
40,168 KB
testcase_18 AC 135 ms
41,456 KB
testcase_19 AC 121 ms
40,056 KB
testcase_20 AC 132 ms
40,940 KB
testcase_21 AC 133 ms
41,300 KB
testcase_22 AC 122 ms
39,832 KB
testcase_23 AC 135 ms
41,460 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package No400番台;

import java.util.Scanner;

public class Q415 {
	public static void main(String[] args) {
		new Q415().solver();
	}
	void solver() {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long D = sc.nextLong();
		System.out.println(N / gcd(D, N) -1);
	}

	static long gcd(long a, long b) {
		int e = 0;
		while ((a & 1) == 0 && (b & 1) == 0) {
			a >>= 1;
			b >>= 1;
			e++;
		}
		a = reduce(a);
		b = reduce(b);

		while (b != 0 && b != 1) {
			long c = Math.abs(a - b);
			a = Math.min(a, b);
			b = c;
		}
		if (b == 0) {
			return (1 << e) * a;
		} else if (b == 1) {
			return 1 << e;
		} else {
			throw new AssertionError(b);
		}
	}

	static long reduce(long a) {
		while ((a & 1) == 0) {
			a >>= 1;
		}
		return a;
	}
}
0