結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,088 KB
testcase_01 AC 133 ms
54,272 KB
testcase_02 AC 132 ms
54,024 KB
testcase_03 AC 129 ms
53,828 KB
testcase_04 AC 130 ms
53,676 KB
testcase_05 AC 131 ms
53,816 KB
testcase_06 AC 130 ms
53,916 KB
testcase_07 AC 134 ms
54,100 KB
testcase_08 AC 130 ms
53,940 KB
testcase_09 AC 132 ms
53,920 KB
testcase_10 AC 131 ms
53,916 KB
testcase_11 AC 133 ms
54,072 KB
testcase_12 AC 132 ms
53,988 KB
testcase_13 AC 130 ms
53,920 KB
testcase_14 AC 130 ms
53,792 KB
testcase_15 AC 128 ms
53,832 KB
testcase_16 AC 134 ms
53,752 KB
testcase_17 AC 129 ms
53,864 KB
testcase_18 AC 128 ms
53,912 KB
testcase_19 AC 129 ms
53,700 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);
		BigInteger T = new BigInteger(sc.next()).subtract(BigInteger.ONE);
		BigInteger A = new BigInteger(sc.next());
		BigInteger B = new BigInteger(sc.next());
		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