結果

問題 No.415 ぴょん
ユーザー 37zigen37zigen
提出日時 2016-08-24 17:18:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 838 bytes
コンパイル時間 3,681 ms
コンパイル使用メモリ 79,380 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-11-18 14:30:12
合計ジャッジ時間 8,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,012 KB
testcase_01 AC 115 ms
52,712 KB
testcase_02 AC 125 ms
54,060 KB
testcase_03 AC 130 ms
54,016 KB
testcase_04 AC 125 ms
53,920 KB
testcase_05 AC 126 ms
53,856 KB
testcase_06 AC 130 ms
54,136 KB
testcase_07 AC 129 ms
54,088 KB
testcase_08 AC 123 ms
54,152 KB
testcase_09 AC 127 ms
54,132 KB
testcase_10 AC 124 ms
53,972 KB
testcase_11 AC 126 ms
53,840 KB
testcase_12 AC 107 ms
52,712 KB
testcase_13 AC 125 ms
54,020 KB
testcase_14 AC 127 ms
53,912 KB
testcase_15 AC 127 ms
54,264 KB
testcase_16 AC 113 ms
53,136 KB
testcase_17 AC 125 ms
53,872 KB
testcase_18 AC 128 ms
54,152 KB
testcase_19 AC 125 ms
54,096 KB
testcase_20 AC 129 ms
54,268 KB
testcase_21 AC 125 ms
54,128 KB
testcase_22 AC 127 ms
53,960 KB
testcase_23 AC 125 ms
54,100 KB
testcase_24 AC 123 ms
54,112 KB
testcase_25 AC 112 ms
52,688 KB
testcase_26 AC 124 ms
54,012 KB
権限があれば一括ダウンロードができます

ソースコード

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 / Math.abs(gcd(D, N)) - 1);
	}

	static long gcd(long t1, long t2) {
		if (Math.abs(t1) < Math.abs(t2)) {
			long d = t2;
			t2 = t1;
			t1 = d;
		}
		if (t2 == 0)
			return t1;

		return gcd(t2, remainder(t1, t2));
	}

	static long remainder(long a, long b) {

		long r = a % b;
		if (Math.abs(r) > Math.abs(b / 2)) {
			if (r > 0 && b > 0) {
				r -= b;
			} else if (r > 0 && b < 0) {
				r += b;
			} else if (r < 0 && b > 0) {
				r += b;
			} else if (r < 0 && b < 0) {
				r -= b;
			} else {
				throw new AssertionError(a + " " + b);
			}
		}
		return r;
	}
}
0