結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー matsuyou1001matsuyou1001
提出日時 2020-01-07 10:36:06
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 485 bytes
コンパイル時間 1,008 ms
コンパイル使用メモリ 108,960 KB
実行使用メモリ 62,056 KB
最終ジャッジ日時 2024-11-23 00:38:53
合計ジャッジ時間 55,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 28 ms
32,072 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 32 ms
26,240 KB
testcase_07 AC 28 ms
41,472 KB
testcase_08 AC 34 ms
44,672 KB
testcase_09 TLE -
testcase_10 AC 46 ms
38,100 KB
testcase_11 AC 29 ms
24,704 KB
testcase_12 TLE -
testcase_13 AC 627 ms
28,544 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 28 ms
32,064 KB
testcase_27 AC 29 ms
24,448 KB
testcase_28 AC 79 ms
28,160 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 minNum = nums.Min();
        var numCount = Enumerable.Range(minNum, N - minNum + 1) //最低数からNまでの数字のシーケンスを作る
                                 .Count(n => nums.Any(a => n % a == 0));

        Console.WriteLine(numCount);
    }
}
0