結果

問題 No.1350 2019-6problem
ユーザー tentententen
提出日時 2021-01-18 14:28:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 4,154 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-05-08 04:00:36
合計ジャッジ時間 5,521 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,536 KB
testcase_01 AC 116 ms
41,544 KB
testcase_02 AC 126 ms
41,552 KB
testcase_03 AC 105 ms
41,400 KB
testcase_04 AC 121 ms
41,144 KB
testcase_05 AC 103 ms
41,428 KB
testcase_06 AC 106 ms
41,832 KB
testcase_07 AC 115 ms
41,232 KB
testcase_08 AC 106 ms
41,436 KB
testcase_09 AC 112 ms
41,084 KB
testcase_10 AC 107 ms
41,560 KB
testcase_11 AC 111 ms
41,420 KB
testcase_12 AC 116 ms
41,340 KB
testcase_13 AC 121 ms
41,416 KB
testcase_14 AC 128 ms
41,340 KB
testcase_15 AC 122 ms
41,800 KB
testcase_16 AC 108 ms
41,540 KB
testcase_17 AC 113 ms
41,512 KB
testcase_18 AC 115 ms
41,288 KB
testcase_19 AC 118 ms
41,540 KB
testcase_20 AC 120 ms
41,108 KB
testcase_21 AC 119 ms
41,468 KB
testcase_22 AC 108 ms
41,532 KB
testcase_23 AC 120 ms
41,312 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