結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー matsuyou1001matsuyou1001
提出日時 2020-01-07 11:57:26
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 817 bytes
コンパイル時間 3,972 ms
コンパイル使用メモリ 113,128 KB
実行使用メモリ 841,428 KB
最終ジャッジ日時 2024-11-23 00:47:18
合計ジャッジ時間 7,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
28,728 KB
testcase_01 WA -
testcase_02 AC 31 ms
19,072 KB
testcase_03 AC 32 ms
19,200 KB
testcase_04 TLE -
testcase_05 WA -
testcase_06 AC 33 ms
24,876 KB
testcase_07 AC 33 ms
25,388 KB
testcase_08 AC 33 ms
25,260 KB
testcase_09 AC 33 ms
25,264 KB
testcase_10 AC 33 ms
25,000 KB
testcase_11 AC 33 ms
23,352 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 34 ms
25,252 KB
testcase_15 AC 33 ms
25,128 KB
testcase_16 AC 34 ms
25,260 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 38 ms
26,792 KB
testcase_24 AC 35 ms
25,132 KB
testcase_25 WA -
testcase_26 AC 34 ms
25,392 KB
testcase_27 AC 34 ms
25,260 KB
testcase_28 AC 33 ms
24,996 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 49 ms
27,424 KB
testcase_32 WA -
testcase_33 AC 35 ms
25,136 KB
testcase_34 WA -
testcase_35 WA -
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)).Distinct().ToArray();

        var calcNums = nums.Where(n => nums.All(a => n == a || n % a != 0)).ToArray();
        var calcMinNum = calcNums.Min();

        var numCount =
            calcNums.Sum(n => {
                var lessThanMeNums = calcNums.Where(c => c < n).ToArray();
                if (!lessThanMeNums.Any())
                    return N / n;

                var multipliers = Enumerable.Range(1, N / n).ToArray();

                return multipliers.Count(m => lessThanMeNums.All(l => m % l != 0));
            });

        Console.WriteLine(numCount);

#if DEBUG
        Console.Read();
#endif
    }
}
0