結果

問題 No.415 ぴょん
ユーザー fal_rndfal_rnd
提出日時 2016-11-17 22:34:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 339 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-11-18 14:51:13
合計ジャッジ時間 6,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,656 KB
testcase_01 AC 116 ms
54,028 KB
testcase_02 AC 114 ms
53,672 KB
testcase_03 AC 104 ms
53,072 KB
testcase_04 AC 116 ms
53,892 KB
testcase_05 AC 119 ms
54,232 KB
testcase_06 AC 117 ms
53,872 KB
testcase_07 AC 117 ms
53,976 KB
testcase_08 AC 121 ms
54,096 KB
testcase_09 AC 117 ms
54,292 KB
testcase_10 AC 119 ms
53,800 KB
testcase_11 AC 117 ms
53,908 KB
testcase_12 AC 117 ms
53,888 KB
testcase_13 AC 117 ms
53,752 KB
testcase_14 AC 117 ms
54,164 KB
testcase_15 AC 115 ms
54,076 KB
testcase_16 AC 117 ms
54,048 KB
testcase_17 AC 104 ms
53,012 KB
testcase_18 AC 106 ms
52,836 KB
testcase_19 AC 103 ms
53,124 KB
testcase_20 AC 106 ms
54,324 KB
testcase_21 AC 117 ms
54,120 KB
testcase_22 AC 118 ms
54,020 KB
testcase_23 AC 107 ms
53,104 KB
testcase_24 AC 106 ms
53,080 KB
testcase_25 AC 111 ms
53,580 KB
testcase_26 AC 114 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args){
		int p = s.nextInt(), j = s.nextInt();
		System.out.println(p/gcd(p,j)-1);
	}
	public static long gcd(long a, long b) {
		long m;
		while(a!=0) {
			m = Math.min(a, b);
			a = Math.max(a, b)%m;
			b = m;
		}
		return b;
	}
}
0