結果

問題 No.894 二種類のバス
ユーザー 37zigen37zigen
提出日時 2018-02-21 07:47:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 870 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 78,596 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-09-14 08:37:47
合計ジャッジ時間 5,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,240 KB
testcase_01 AC 129 ms
54,016 KB
testcase_02 AC 132 ms
53,860 KB
testcase_03 AC 134 ms
54,192 KB
testcase_04 AC 134 ms
53,792 KB
testcase_05 AC 134 ms
53,992 KB
testcase_06 AC 132 ms
54,328 KB
testcase_07 AC 132 ms
54,264 KB
testcase_08 AC 131 ms
54,000 KB
testcase_09 AC 133 ms
53,804 KB
testcase_10 AC 134 ms
54,376 KB
testcase_11 AC 132 ms
54,400 KB
testcase_12 AC 134 ms
54,004 KB
testcase_13 AC 134 ms
54,052 KB
testcase_14 AC 134 ms
53,812 KB
testcase_15 AC 133 ms
54,152 KB
testcase_16 AC 132 ms
54,292 KB
testcase_17 AC 121 ms
52,868 KB
testcase_18 AC 133 ms
53,848 KB
testcase_19 AC 133 ms
54,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	public void run() {
		Scanner sc = new Scanner(System.in);
		long t = sc.nextLong();
		long a = sc.nextLong();
		long b = sc.nextLong();
		if (!(1 <= t && 1 <= a && 1 <= b && t <= 1e18 && a <= 1e18 && b <= 1e18))
			throw new AssertionError();

		BigInteger T = BigInteger.valueOf(t).subtract(BigInteger.ONE);
		BigInteger A = BigInteger.valueOf(a);
		BigInteger B = BigInteger.valueOf(b);

		BigInteger ans = BigInteger.ZERO;
		ans = ans.add(T.divide(A));
		ans = ans.add(T.divide(B));
		ans = ans.subtract(T.divide(A.multiply(B).divide(A.gcd(B))));
		ans = ans.add(BigInteger.ONE);
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0