結果
問題 | No.894 二種類のバス |
ユーザー | tenten |
提出日時 | 2020-08-29 12:40:55 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 55 ms / 1,000 ms |
コード長 | 875 bytes |
コンパイル時間 | 3,550 ms |
コンパイル使用メモリ | 74,784 KB |
実行使用メモリ | 50,428 KB |
最終ジャッジ日時 | 2024-11-14 05:36:07 |
合計ジャッジ時間 | 4,149 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,420 KB |
testcase_01 | AC | 55 ms
50,360 KB |
testcase_02 | AC | 53 ms
50,336 KB |
testcase_03 | AC | 53 ms
50,124 KB |
testcase_04 | AC | 53 ms
49,908 KB |
testcase_05 | AC | 52 ms
50,192 KB |
testcase_06 | AC | 53 ms
50,324 KB |
testcase_07 | AC | 53 ms
50,272 KB |
testcase_08 | AC | 53 ms
49,924 KB |
testcase_09 | AC | 55 ms
50,276 KB |
testcase_10 | AC | 53 ms
50,312 KB |
testcase_11 | AC | 54 ms
49,928 KB |
testcase_12 | AC | 53 ms
50,044 KB |
testcase_13 | AC | 53 ms
50,260 KB |
testcase_14 | AC | 53 ms
50,280 KB |
testcase_15 | AC | 53 ms
50,288 KB |
testcase_16 | AC | 54 ms
50,428 KB |
testcase_17 | AC | 53 ms
50,388 KB |
testcase_18 | AC | 53 ms
49,912 KB |
testcase_19 | AC | 52 ms
50,372 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main (String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 3); long t = Long.parseLong(first[0]) - 1; long a = Long.parseLong(first[1]); long b = Long.parseLong(first[2]); long ans = t / a + t / b - t / getLCM(a, b) + 1; System.out.println(ans); } static long getLCM(long a, long b) { long gcd = getGCD(a, b); long ans = a / gcd; if (Long.MAX_VALUE / b <= ans) { return Long.MAX_VALUE; } else { return ans * b; } } static long getGCD(long a, long b) { if (a % b == 0) { return b; } else { return getGCD(b, a % b); } } }