結果

問題 No.1350 2019-6problem
ユーザー ks2mks2m
提出日時 2021-01-17 13:08:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 50,572 KB
最終ジャッジ日時 2024-05-07 01:39:24
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,360 KB
testcase_01 AC 53 ms
50,364 KB
testcase_02 AC 51 ms
50,184 KB
testcase_03 AC 52 ms
50,096 KB
testcase_04 AC 52 ms
50,108 KB
testcase_05 AC 53 ms
50,320 KB
testcase_06 AC 51 ms
50,444 KB
testcase_07 AC 50 ms
50,500 KB
testcase_08 AC 51 ms
50,552 KB
testcase_09 AC 51 ms
50,572 KB
testcase_10 AC 52 ms
50,000 KB
testcase_11 AC 53 ms
50,532 KB
testcase_12 AC 53 ms
50,536 KB
testcase_13 AC 51 ms
49,980 KB
testcase_14 AC 51 ms
50,416 KB
testcase_15 AC 53 ms
50,384 KB
testcase_16 AC 53 ms
50,080 KB
testcase_17 AC 52 ms
50,284 KB
testcase_18 AC 53 ms
50,380 KB
testcase_19 AC 51 ms
50,280 KB
testcase_20 AC 52 ms
50,188 KB
testcase_21 AC 52 ms
50,568 KB
testcase_22 AC 52 ms
49,992 KB
testcase_23 AC 52 ms
50,076 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