結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー matsuyou1001matsuyou1001
提出日時 2020-01-07 10:53:35
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
実行時間 -
コード長 418 bytes
コンパイル時間 3,609 ms
コンパイル使用メモリ 105,600 KB
実行使用メモリ 850,480 KB
最終ジャッジ日時 2024-11-23 00:39:42
合計ジャッジ時間 15,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
37,376 KB
testcase_01 MLE -
testcase_02 TLE -
testcase_03 MLE -
testcase_04 TLE -
testcase_05 MLE -
testcase_06 AC 32 ms
19,328 KB
testcase_07 AC 31 ms
18,944 KB
testcase_08 AC 32 ms
18,816 KB
testcase_09 TLE -
testcase_10 AC 34 ms
19,328 KB
testcase_11 AC 31 ms
19,200 KB
testcase_12 AC 32 ms
19,144 KB
testcase_13 AC 31 ms
19,140 KB
testcase_14 AC 32 ms
19,144 KB
testcase_15 AC 33 ms
19,212 KB
testcase_16 AC 66 ms
31,744 KB
testcase_17 AC 33 ms
19,144 KB
testcase_18 AC 35 ms
20,480 KB
testcase_19 AC 55 ms
25,216 KB
testcase_20 AC 50 ms
25,216 KB
testcase_21 AC 53 ms
25,728 KB
testcase_22 AC 32 ms
19,272 KB
testcase_23 AC 36 ms
20,352 KB
testcase_24 AC 33 ms
19,200 KB
testcase_25 AC 149 ms
32,896 KB
testcase_26 AC 31 ms
19,072 KB
testcase_27 AC 32 ms
19,072 KB
testcase_28 AC 32 ms
18,880 KB
testcase_29 AC 38 ms
20,352 KB
testcase_30 AC 158 ms
41,592 KB
testcase_31 AC 65 ms
26,368 KB
testcase_32 TLE -
testcase_33 AC 946 ms
371,164 KB
testcase_34 AC 55 ms
25,600 KB
testcase_35 AC 89 ms
34,816 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();
        var numCount =
            nums.SelectMany(n =>
                Enumerable.Range(1, N / n).Select(m => n * m)
            ).Distinct()
            .Count();

        Console.WriteLine(numCount);
    }
}
0