結果

問題 No.894 二種類のバス
ユーザー ks2mks2m
提出日時 2019-09-27 21:45:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 711 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 72,952 KB
実行使用メモリ 37,300 KB
最終ジャッジ日時 2024-09-24 22:46:32
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,960 KB
testcase_01 AC 51 ms
37,096 KB
testcase_02 AC 51 ms
37,288 KB
testcase_03 AC 51 ms
37,240 KB
testcase_04 AC 49 ms
36,744 KB
testcase_05 AC 51 ms
37,204 KB
testcase_06 AC 51 ms
37,116 KB
testcase_07 AC 50 ms
36,852 KB
testcase_08 AC 50 ms
36,912 KB
testcase_09 AC 50 ms
36,856 KB
testcase_10 AC 51 ms
37,112 KB
testcase_11 AC 51 ms
37,052 KB
testcase_12 AC 50 ms
37,264 KB
testcase_13 AC 50 ms
37,276 KB
testcase_14 AC 49 ms
37,216 KB
testcase_15 AC 50 ms
37,232 KB
testcase_16 AC 50 ms
37,300 KB
testcase_17 AC 50 ms
36,892 KB
testcase_18 AC 50 ms
37,056 KB
testcase_19 AC 50 ms
37,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		BigInteger t = new BigInteger(sa[0]).subtract(BigInteger.ONE);
		BigInteger a = new BigInteger(sa[1]);
		BigInteger b = new BigInteger(sa[2]);
		br.close();

		BigInteger x = t.divide(a).add(BigInteger.ONE);
		BigInteger y = t.divide(b).add(BigInteger.ONE);
		BigInteger z = a.multiply(b).divide(a.gcd(b));
		BigInteger w = t.divide(z).add(BigInteger.ONE);
		System.out.println(x.add(y).subtract(w).toString());
	}
}
0