結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー matsuyou1001matsuyou1001
提出日時 2020-01-07 10:59:07
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
実行時間 -
コード長 571 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 113,528 KB
実行使用メモリ 718,972 KB
最終ジャッジ日時 2024-11-23 00:40:09
合計ジャッジ時間 11,719 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
37,504 KB
testcase_01 MLE -
testcase_02 AC 28 ms
19,072 KB
testcase_03 AC 31 ms
18,944 KB
testcase_04 TLE -
testcase_05 AC 931 ms
125,172 KB
testcase_06 AC 35 ms
19,200 KB
testcase_07 AC 33 ms
19,328 KB
testcase_08 AC 33 ms
18,816 KB
testcase_09 AC 29 ms
19,072 KB
testcase_10 AC 36 ms
19,456 KB
testcase_11 AC 33 ms
19,328 KB
testcase_12 AC 35 ms
19,412 KB
testcase_13 AC 34 ms
19,028 KB
testcase_14 AC 34 ms
19,020 KB
testcase_15 AC 34 ms
19,032 KB
testcase_16 AC 66 ms
32,256 KB
testcase_17 AC 34 ms
19,160 KB
testcase_18 AC 37 ms
20,608 KB
testcase_19 AC 55 ms
25,216 KB
testcase_20 AC 50 ms
25,344 KB
testcase_21 AC 54 ms
25,984 KB
testcase_22 AC 33 ms
19,292 KB
testcase_23 AC 37 ms
20,608 KB
testcase_24 AC 35 ms
19,456 KB
testcase_25 AC 151 ms
32,768 KB
testcase_26 AC 33 ms
18,944 KB
testcase_27 AC 33 ms
19,072 KB
testcase_28 AC 34 ms
19,284 KB
testcase_29 AC 38 ms
20,608 KB
testcase_30 AC 153 ms
41,868 KB
testcase_31 AC 60 ms
26,496 KB
testcase_32 TLE -
testcase_33 AC 831 ms
377,124 KB
testcase_34 AC 57 ms
29,880 KB
testcase_35 AC 90 ms
41,124 KB
testcase_36 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

class Program {
    static void Main() {
        var N = int.Parse(Console.ReadLine());
        var nums = Console.ReadLine().Split(' ').Select(n => int.Parse(n)).ToArray();

        int numCount;
        if (nums.Any(n => n == 1))
            numCount = N;
        else {
            numCount =
                nums.Distinct()
                .SelectMany(n =>
                    Enumerable.Range(1, N / n).Select(m => n * m)
                ).Distinct()
                .Count();
        }

        Console.WriteLine(numCount);
    }
}
0