結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー akichiakichi
提出日時 2017-08-27 23:40:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 624 ms / 1,000 ms
コード長 1,369 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 112,152 KB
実行使用メモリ 315,652 KB
最終ジャッジ日時 2024-11-06 07:04:08
合計ジャッジ時間 4,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
35,180 KB
testcase_01 AC 39 ms
30,160 KB
testcase_02 AC 31 ms
26,192 KB
testcase_03 AC 31 ms
28,280 KB
testcase_04 AC 32 ms
26,108 KB
testcase_05 AC 31 ms
26,292 KB
testcase_06 AC 30 ms
26,072 KB
testcase_07 AC 31 ms
26,196 KB
testcase_08 AC 30 ms
26,072 KB
testcase_09 AC 32 ms
26,372 KB
testcase_10 AC 31 ms
28,160 KB
testcase_11 AC 31 ms
26,500 KB
testcase_12 AC 33 ms
26,488 KB
testcase_13 AC 32 ms
26,220 KB
testcase_14 AC 31 ms
26,348 KB
testcase_15 AC 32 ms
28,264 KB
testcase_16 AC 48 ms
36,784 KB
testcase_17 AC 32 ms
28,268 KB
testcase_18 AC 32 ms
28,748 KB
testcase_19 AC 40 ms
28,084 KB
testcase_20 AC 39 ms
28,340 KB
testcase_21 AC 48 ms
36,452 KB
testcase_22 AC 32 ms
26,348 KB
testcase_23 AC 35 ms
29,556 KB
testcase_24 AC 31 ms
26,348 KB
testcase_25 AC 67 ms
46,608 KB
testcase_26 AC 31 ms
26,508 KB
testcase_27 AC 31 ms
26,196 KB
testcase_28 AC 32 ms
26,216 KB
testcase_29 AC 35 ms
28,116 KB
testcase_30 AC 67 ms
48,216 KB
testcase_31 AC 33 ms
28,260 KB
testcase_32 AC 492 ms
179,208 KB
testcase_33 AC 624 ms
315,652 KB
testcase_34 AC 49 ms
34,284 KB
testcase_35 AC 70 ms
48,952 KB
testcase_36 AC 235 ms
107,268 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.Generic;
using System.Linq;
class Program {
    static void Main() {
        long n = long.Parse(Console.ReadLine());
        long[] abc = Console.ReadLine().Split().Select(long.Parse).ToArray();
        long lcm = Lcm(Lcm(abc[0], abc[1]), abc[2]);
        long ans = 0;
        if (lcm < n) {
            HashSet<int> hit = new HashSet<int>();

            foreach (int i in abc) {
                for (int j = i; j <= lcm; j += i) {
                    hit.Add(j);
                }
            }
            ans += hit.Count * (n / lcm);
        }

        long m = n % lcm;

        HashSet<int> hit2 = new HashSet<int>();
        foreach (int i in abc) {
            for (int j = i; j <= m; j += i) {
                hit2.Add(j);
            }
        }
        ans += hit2.Count;
        Console.WriteLine(ans);
    }

    // 最小公倍数 出典: http://qiita.com/gushwell/items/f08d0e71fa0480dbb396
    public static long Lcm(long a, long b) {
        return a * b / Gcd(a, b);
    }

    // ユークリッドの互除法 
    public static long Gcd(long a, long b) {
        if (a < b)
            // 引数を入替えて自分を呼び出す
            return Gcd(b, a);
        while (b != 0) {
            var remainder = a % b;
            a = b;
            b = remainder;
        }
        return a;
    }
}
0