結果

問題 No.1350 2019-6problem
ユーザー tentententen
提出日時 2021-01-18 14:20:27
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 954 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 78,776 KB
実行使用メモリ 468,480 KB
最終ジャッジ日時 2024-05-08 03:52:42
合計ジャッジ時間 7,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
46,760 KB
testcase_01 AC 123 ms
41,484 KB
testcase_02 AC 125 ms
41,192 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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();
		long lcm = getLCM(a, b);
		long count = lcm / a - 1 + lcm / b;
		int k = sc.nextInt();
		long times = k / count;
		long mod = k % count;
		TreeSet<Long> set = new TreeSet<>();
		for (long i = 1; i * a < lcm; i++) {
		    set.add(i * a);
		}
		for (long i = 1; i * b < lcm; i++) {
		    set.add(i * b);
		}
		if (mod == 0) {
		    long ans = lcm * times;
		    System.out.println(ans);
		} else {
		    long ans = lcm * times;
		    for (int i = 1; i < mod; i++) {
		        set.pollFirst();
		    }
		    ans += set.first();
		    System.out.println(ans);
		}
	}
	
	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