結果

問題 No.1350 2019-6problem
ユーザー tentententen
提出日時 2021-01-18 14:28:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-12-14 04:14:02
合計ジャッジ時間 6,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,012 KB
testcase_01 AC 134 ms
54,216 KB
testcase_02 AC 131 ms
54,212 KB
testcase_03 AC 130 ms
54,084 KB
testcase_04 AC 133 ms
53,868 KB
testcase_05 AC 133 ms
54,108 KB
testcase_06 AC 133 ms
54,032 KB
testcase_07 AC 136 ms
54,056 KB
testcase_08 AC 132 ms
54,308 KB
testcase_09 AC 133 ms
54,220 KB
testcase_10 AC 134 ms
53,844 KB
testcase_11 AC 136 ms
54,324 KB
testcase_12 AC 134 ms
54,076 KB
testcase_13 AC 133 ms
54,152 KB
testcase_14 AC 131 ms
54,184 KB
testcase_15 AC 130 ms
54,136 KB
testcase_16 AC 131 ms
54,172 KB
testcase_17 AC 172 ms
54,056 KB
testcase_18 AC 130 ms
54,072 KB
testcase_19 AC 118 ms
52,752 KB
testcase_20 AC 129 ms
54,240 KB
testcase_21 AC 131 ms
54,104 KB
testcase_22 AC 137 ms
54,012 KB
testcase_23 AC 129 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int k = sc.nextInt();
		long lcm = getLCM(a, b);
		long left = 0;
		long right = Long.MAX_VALUE / 2;
		while (right - left > 1) {
		    long m = (left + right) / 2;
		    long count = m / a + m / b - m / lcm;
		    if (count >= k) {
		        right = m;
		    } else {
		        left = m;
		    }
		}
	    System.out.println(right);
	}
	
	static long getLCM(long a, long b) {
	    return a / getGCD(a, b) * b;
	}
	
	static long getGCD(long a, long b) {
	    if (a % b == 0) {
	        return b;
	    } else {
	        return getGCD(b, a % b);
	    }
	}
}
0