結果

問題 No.1350 2019-6problem
ユーザー tentententen
提出日時 2021-01-18 14:20:27
言語 Java
(openjdk 23)
結果
MLE  
実行時間 -
コード長 954 bytes
コンパイル時間 2,601 ms
コンパイル使用メモリ 79,060 KB
実行使用メモリ 516,620 KB
最終ジャッジ日時 2024-12-14 04:03:14
合計ジャッジ時間 57,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
60,892 KB
testcase_01 MLE -
testcase_02 AC 124 ms
60,704 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 134 ms
61,060 KB
testcase_08 MLE -
testcase_09 AC 128 ms
60,916 KB
testcase_10 MLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 135 ms
61,036 KB
testcase_22 AC 133 ms
54,340 KB
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

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