結果

問題 No.894 二種類のバス
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-28 11:43:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-10-01 20:23:32
合計ジャッジ時間 4,971 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,900 KB
testcase_01 AC 108 ms
39,844 KB
testcase_02 AC 114 ms
41,196 KB
testcase_03 AC 114 ms
41,284 KB
testcase_04 AC 112 ms
41,160 KB
testcase_05 AC 113 ms
41,472 KB
testcase_06 AC 110 ms
41,196 KB
testcase_07 AC 116 ms
40,888 KB
testcase_08 WA -
testcase_09 AC 115 ms
41,104 KB
testcase_10 AC 118 ms
41,248 KB
testcase_11 AC 110 ms
39,952 KB
testcase_12 AC 121 ms
41,104 KB
testcase_13 AC 124 ms
41,164 KB
testcase_14 AC 111 ms
39,916 KB
testcase_15 AC 112 ms
39,896 KB
testcase_16 AC 112 ms
40,172 KB
testcase_17 AC 121 ms
41,140 KB
testcase_18 AC 107 ms
40,220 KB
testcase_19 AC 116 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long t = sc.nextLong();
    long a = sc.nextLong();
    long b = sc.nextLong();

    long ans = 2 + (t - 1) / a;

    long g = gcd(a, b);
    long g1 = g * (a / g) * (b / g);

    ans -= (1 + (t - 1) / g1);

    ans += (t - 1) / b;

    System.out.println(ans);
  }

  public static long gcd(long a, long b) {
    if(b == 0) return a;
    return gcd(b, (a % b));
  }
}
0