結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー qwrtpsfgqwrtpsfg
提出日時 2017-11-22 19:16:22
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 645 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 106,368 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-11-26 11:21:16
合計ジャッジ時間 37,896 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 24 ms
24,192 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 24 ms
24,064 KB
testcase_07 AC 23 ms
36,480 KB
testcase_08 AC 24 ms
24,320 KB
testcase_09 TLE -
testcase_10 AC 25 ms
34,460 KB
testcase_11 AC 25 ms
23,936 KB
testcase_12 AC 130 ms
24,064 KB
testcase_13 AC 80 ms
36,608 KB
testcase_14 AC 129 ms
24,320 KB
testcase_15 AC 209 ms
36,480 KB
testcase_16 AC 141 ms
24,320 KB
testcase_17 AC 125 ms
36,992 KB
testcase_18 AC 402 ms
24,064 KB
testcase_19 AC 662 ms
34,240 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 133 ms
24,064 KB
testcase_23 AC 678 ms
18,944 KB
testcase_24 AC 496 ms
19,072 KB
testcase_25 TLE -
testcase_26 AC 24 ms
18,816 KB
testcase_27 AC 24 ms
18,944 KB
testcase_28 AC 29 ms
18,944 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 405 ms
18,816 KB
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;
using System.Collections.Generic;

public class yukicoder
{

	public static bool isMultiple(int n, int a, int b, int c)
	{
		if(n % a == 0)
			return true;
		else if(n % b == 0)
			return true;
		else if(n % c == 0)
			return true;
		else
			return false;
	}
	
    public static void Main()
    {
		int n = int.Parse(Console.ReadLine());
		int[] array = Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray();
		int count = 0;
		
		for(int i = 1; i <= n; i++)
    	{
    		if(isMultiple(i, array[0], array[1], array[2]))
    			count++;
    	}
    	
    	Console.WriteLine(count.ToString());
    }

}
0