結果
問題 | No.593 4進FizzBuzz |
ユーザー | PE11 |
提出日時 | 2018-01-23 17:30:29 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,026 bytes |
コンパイル時間 | 1,061 ms |
コンパイル使用メモリ | 103,552 KB |
実行使用メモリ | 29,056 KB |
最終ジャッジ日時 | 2024-06-07 18:50:28 |
合計ジャッジ時間 | 9,170 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
17,536 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 22 ms
17,536 KB |
testcase_04 | AC | 22 ms
17,664 KB |
testcase_05 | AC | 24 ms
17,664 KB |
testcase_06 | WA | - |
testcase_07 | AC | 23 ms
17,920 KB |
testcase_08 | WA | - |
testcase_09 | AC | 23 ms
17,920 KB |
testcase_10 | WA | - |
testcase_11 | AC | 22 ms
17,664 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 301 ms
28,928 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 314 ms
28,928 KB |
testcase_20 | WA | - |
testcase_21 | AC | 303 ms
29,056 KB |
testcase_22 | AC | 309 ms
28,800 KB |
testcase_23 | AC | 306 ms
28,928 KB |
testcase_24 | AC | 303 ms
28,800 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 322 ms
28,928 KB |
testcase_28 | WA | - |
testcase_29 | AC | 312 ms
28,800 KB |
testcase_30 | WA | - |
testcase_31 | AC | 299 ms
28,928 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 312 ms
28,928 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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 - 1, 1)); if (LastNum % 5 == 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; } } }