結果

問題 No.1350 2019-6problem
ユーザー ks2mks2m
提出日時 2021-01-17 13:08:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 3,196 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 37,368 KB
最終ジャッジ日時 2024-11-29 13:34:33
合計ジャッジ時間 5,651 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
37,240 KB
testcase_01 AC 56 ms
37,368 KB
testcase_02 AC 56 ms
37,308 KB
testcase_03 AC 54 ms
37,012 KB
testcase_04 AC 57 ms
37,224 KB
testcase_05 AC 57 ms
37,044 KB
testcase_06 AC 56 ms
37,228 KB
testcase_07 AC 56 ms
36,852 KB
testcase_08 AC 56 ms
37,292 KB
testcase_09 AC 56 ms
36,732 KB
testcase_10 AC 55 ms
37,316 KB
testcase_11 AC 56 ms
36,960 KB
testcase_12 AC 56 ms
37,012 KB
testcase_13 AC 54 ms
36,960 KB
testcase_14 AC 58 ms
37,240 KB
testcase_15 AC 55 ms
37,096 KB
testcase_16 AC 55 ms
36,944 KB
testcase_17 AC 55 ms
37,188 KB
testcase_18 AC 57 ms
36,960 KB
testcase_19 AC 55 ms
36,940 KB
testcase_20 AC 55 ms
37,264 KB
testcase_21 AC 54 ms
37,168 KB
testcase_22 AC 54 ms
37,144 KB
testcase_23 AC 56 ms
37,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		long a = Integer.parseInt(sa[0]);
		long b = Integer.parseInt(sa[1]);
		long k = Integer.parseInt(sa[2]);
		br.close();

		long c = lcm(a, b);
		long ok = a * k;
		long ng = 0;
		while (Math.abs(ok - ng) > 1) {
			long mid = (ok + ng) / 2;
			long aa = mid / a;
			long bb = mid / b;
			long cc = mid / c;
			if (aa + bb - cc >= k) {
				ok = mid;
			} else {
				ng = mid;
			}
		}
		System.out.println(ok);
	}

	static long lcm(long a, long b) {
		BigInteger ba = BigInteger.valueOf(a);
		BigInteger bb = BigInteger.valueOf(b);
		return ba.multiply(bb).divide(ba.gcd(bb)).longValue();
	}
}
0