結果

問題 No.593 4進FizzBuzz
ユーザー PE11PE11
提出日時 2018-01-23 17:40:17
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,027 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-06-07 18:50:45
合計ジャッジ時間 8,921 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 22 ms
17,536 KB
testcase_02 AC 23 ms
18,048 KB
testcase_03 WA -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 22 ms
17,664 KB
testcase_07 AC 22 ms
17,664 KB
testcase_08 AC 22 ms
17,792 KB
testcase_09 AC 22 ms
17,792 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 22 ms
17,408 KB
testcase_15 WA -
testcase_16 AC 302 ms
28,672 KB
testcase_17 WA -
testcase_18 AC 303 ms
28,928 KB
testcase_19 AC 311 ms
29,056 KB
testcase_20 WA -
testcase_21 AC 303 ms
28,928 KB
testcase_22 AC 311 ms
29,056 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 310 ms
28,928 KB
testcase_27 AC 313 ms
28,928 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 302 ms
28,800 KB
testcase_31 WA -
testcase_32 AC 303 ms
29,184 KB
testcase_33 AC 322 ms
29,056 KB
testcase_34 AC 317 ms
29,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;

namespace _4FizzBuzz
{
	class Program
	{
		static void Main()
		{
			string InputNum = Console.ReadLine();
			Console.WriteLine(IsFizzBuzz(InputNum));
		}

		public static bool IsModThree(string InputNum)
		{
			int PlusNum = 0;

			foreach (var Num in InputNum)
				PlusNum += Convert.ToInt32(Num.ToString());

			if (PlusNum % 3 == 0)
				return true;

			else
				return false;
		}

		public static bool IsModFive(string InputNum)
		{
			int LastNum = Convert.ToInt32(InputNum.Substring(InputNum.Length - 2, 2));

			if (LastNum % 11 == 0)
				return true;

			else
				return false;
		}

		public static string IsFizzBuzz(string InputNum)
		{
			bool IsThree = IsModThree(InputNum);
			bool IsFive = IsModFive(InputNum);

			if (IsThree && IsFive)
				return "FizzBuzz";

			if (IsThree)
				return "Fizz";

			if (IsFive)
				return "Buzz";

			return InputNum;
		}

	}


}
0