結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー qwrtpsfgqwrtpsfg
提出日時 2017-11-24 11:07:39
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 506 bytes
コンパイル時間 849 ms
コンパイル使用メモリ 109,360 KB
実行使用メモリ 932,240 KB
最終ジャッジ日時 2024-11-27 07:03:33
合計ジャッジ時間 13,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
34,176 KB
testcase_01 AC 149 ms
66,244 KB
testcase_02 MLE -
testcase_03 AC 140 ms
28,164 KB
testcase_04 TLE -
testcase_05 AC 572 ms
161,052 KB
testcase_06 AC 31 ms
26,360 KB
testcase_07 AC 30 ms
26,420 KB
testcase_08 AC 31 ms
26,032 KB
testcase_09 TLE -
testcase_10 AC 44 ms
28,396 KB
testcase_11 AC 36 ms
28,080 KB
testcase_12 AC 36 ms
25,968 KB
testcase_13 AC 35 ms
26,112 KB
testcase_14 AC 35 ms
24,436 KB
testcase_15 AC 35 ms
26,232 KB
testcase_16 AC 53 ms
36,660 KB
testcase_17 AC 35 ms
28,156 KB
testcase_18 AC 34 ms
24,760 KB
testcase_19 AC 41 ms
30,156 KB
testcase_20 AC 40 ms
27,960 KB
testcase_21 AC 47 ms
34,148 KB
testcase_22 AC 32 ms
28,276 KB
testcase_23 AC 36 ms
29,700 KB
testcase_24 AC 32 ms
26,220 KB
testcase_25 AC 67 ms
45,580 KB
testcase_26 AC 30 ms
26,128 KB
testcase_27 AC 32 ms
28,068 KB
testcase_28 AC 32 ms
26,240 KB
testcase_29 AC 34 ms
27,656 KB
testcase_30 AC 106 ms
59,040 KB
testcase_31 AC 54 ms
35,180 KB
testcase_32 TLE -
testcase_33 AC 510 ms
320,836 KB
testcase_34 AC 47 ms
33,260 KB
testcase_35 AC 70 ms
50,016 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;
using System.Collections.Generic;

public class yukicoder
{
	
    public static void Main()
    {
		int n = int.Parse(Console.ReadLine());
		int[] array = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
		var MultipleList = new HashSet<int>();
		
		for(int i = 0; i < array.Length; i++)
		{
			for(int j = 1; j <= n / array[i]; j++)
			{
				MultipleList.Add(j * array[i]);
			}
			
		}
		
		Console.WriteLine(MultipleList.Count().ToString());

    }

}
0