結果

問題 No.894 二種類のバス
ユーザー bluemeganebluemegane
提出日時 2021-04-24 13:13:41
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 788 bytes
コンパイル時間 799 ms
コンパイル使用メモリ 109,628 KB
実行使用メモリ 26,600 KB
最終ジャッジ日時 2024-07-04 09:04:42
合計ジャッジ時間 2,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
26,196 KB
testcase_01 AC 32 ms
24,416 KB
testcase_02 AC 31 ms
24,668 KB
testcase_03 AC 32 ms
24,412 KB
testcase_04 AC 32 ms
24,284 KB
testcase_05 AC 32 ms
24,496 KB
testcase_06 AC 32 ms
24,672 KB
testcase_07 AC 32 ms
24,288 KB
testcase_08 AC 31 ms
24,160 KB
testcase_09 AC 31 ms
24,408 KB
testcase_10 AC 32 ms
26,340 KB
testcase_11 AC 32 ms
26,456 KB
testcase_12 AC 32 ms
24,412 KB
testcase_13 AC 33 ms
26,600 KB
testcase_14 AC 31 ms
24,408 KB
testcase_15 AC 32 ms
24,412 KB
testcase_16 AC 32 ms
24,628 KB
testcase_17 AC 31 ms
26,308 KB
testcase_18 AC 31 ms
24,692 KB
testcase_19 AC 32 ms
24,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Numerics;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var t = long.Parse(line[0]);
        var a = long.Parse(line[1]);
        var b = long.Parse(line[2]);
        getAns(t, a, b);
    }
    static void getAns(long t, long a, long b)
    {
        var gcd = Gcd(a, b);
        BigInteger lcm = (BigInteger)a / gcd * b;
        var a1 = (t - 1) / a + 1;
        var a2 = (t - 1) / b + 1;
        var a3 = (t - 1) / lcm + 1;
        Console.WriteLine(a1 + a2 - a3);
    }
    static long Gcd(long a, long b)
    {
        if (a < b) return Gcd(b, a);
        while (b != 0)
        {
            var w = a % b;
            a = b;
            b = w;
        }
        return a;
    }
}
0