結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,092 KB
testcase_01 AC 120 ms
54,176 KB
testcase_02 AC 110 ms
54,312 KB
testcase_03 AC 107 ms
53,044 KB
testcase_04 AC 117 ms
54,140 KB
testcase_05 AC 105 ms
52,968 KB
testcase_06 AC 116 ms
53,916 KB
testcase_07 AC 104 ms
53,040 KB
testcase_08 AC 114 ms
54,120 KB
testcase_09 AC 119 ms
54,028 KB
testcase_10 AC 117 ms
54,052 KB
testcase_11 AC 118 ms
54,276 KB
testcase_12 AC 116 ms
54,560 KB
testcase_13 AC 109 ms
53,088 KB
testcase_14 AC 117 ms
53,168 KB
testcase_15 AC 123 ms
54,004 KB
testcase_16 AC 106 ms
54,516 KB
testcase_17 AC 107 ms
52,880 KB
testcase_18 AC 117 ms
53,916 KB
testcase_19 AC 109 ms
53,048 KB
testcase_20 AC 118 ms
53,896 KB
testcase_21 AC 118 ms
54,152 KB
testcase_22 AC 118 ms
54,128 KB
testcase_23 AC 117 ms
54,180 KB
testcase_24 AC 121 ms
54,520 KB
testcase_25 AC 116 ms
54,008 KB
testcase_26 AC 106 ms
52,976 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