結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー mbanmban
提出日時 2016-12-25 15:17:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 1,059 bytes
コンパイル時間 955 ms
コンパイル使用メモリ 108,916 KB
実行使用メモリ 26,140 KB
最終ジャッジ日時 2024-12-14 19:05:27
合計ジャッジ時間 3,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
26,020 KB
testcase_01 AC 25 ms
23,772 KB
testcase_02 AC 25 ms
23,652 KB
testcase_03 AC 25 ms
21,680 KB
testcase_04 AC 25 ms
23,772 KB
testcase_05 AC 25 ms
26,124 KB
testcase_06 AC 26 ms
25,940 KB
testcase_07 AC 25 ms
23,652 KB
testcase_08 AC 25 ms
25,880 KB
testcase_09 AC 25 ms
25,872 KB
testcase_10 AC 26 ms
23,644 KB
testcase_11 AC 25 ms
25,876 KB
testcase_12 AC 25 ms
25,948 KB
testcase_13 AC 25 ms
25,944 KB
testcase_14 AC 24 ms
23,904 KB
testcase_15 AC 25 ms
24,108 KB
testcase_16 AC 25 ms
25,880 KB
testcase_17 AC 24 ms
25,948 KB
testcase_18 AC 25 ms
26,012 KB
testcase_19 AC 25 ms
24,032 KB
testcase_20 AC 26 ms
23,776 KB
testcase_21 AC 24 ms
21,812 KB
testcase_22 AC 25 ms
25,888 KB
testcase_23 AC 25 ms
23,768 KB
testcase_24 AC 25 ms
26,008 KB
testcase_25 AC 24 ms
23,772 KB
testcase_26 AC 25 ms
26,140 KB
testcase_27 AC 26 ms
24,028 KB
testcase_28 AC 25 ms
23,648 KB
testcase_29 AC 23 ms
24,028 KB
testcase_30 AC 23 ms
23,700 KB
testcase_31 AC 25 ms
25,864 KB
testcase_32 AC 24 ms
21,812 KB
testcase_33 AC 26 ms
23,960 KB
testcase_34 AC 25 ms
23,900 KB
testcase_35 AC 25 ms
21,808 KB
testcase_36 AC 25 ms
24,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Magatro
{
    static long N;
    static long a, b, c;
    static void Main()
    {
        N = int.Parse(Console.ReadLine());
        string[] s = Console.ReadLine().Split(' ');
        a = int.Parse(s[0]);
        b = int.Parse(s[1]);
        c = int.Parse(s[2]);
        long cnt = N / a + N / b + N / c;
        cnt += N / LCM(a, b, c);
        cnt -= N / LCM(a, b) + N / LCM(a, c) + N / LCM(b, c);
        Console.WriteLine(cnt);
    }
    static long LCM(long a,long b)
    {
        long r;
        long x = a * b;
        if (a < b)
        {
            long t = a;
            a = b;
            b = t;
        }
        r = a % b;
        while (r > 0)
        {
            a = b;
            b = r;
            r = a % b;
        }
        return x / b;
    }
    static long LCM(long a,long b,long c)
    {
        return LCM(LCM(a, b), c);
    }
}


0