結果
問題 | No.593 4進FizzBuzz |
ユーザー | バカらっく |
提出日時 | 2017-11-10 23:25:23 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,538 bytes |
コンパイル時間 | 868 ms |
コンパイル使用メモリ | 116,432 KB |
実行使用メモリ | 68,516 KB |
最終ジャッジ日時 | 2024-05-03 14:39:17 |
合計ジャッジ時間 | 5,377 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
34,124 KB |
testcase_01 | AC | 27 ms
24,876 KB |
testcase_02 | AC | 25 ms
24,876 KB |
testcase_03 | AC | 26 ms
25,072 KB |
testcase_04 | AC | 27 ms
22,840 KB |
testcase_05 | AC | 27 ms
25,132 KB |
testcase_06 | AC | 27 ms
24,752 KB |
testcase_07 | AC | 25 ms
23,092 KB |
testcase_08 | AC | 25 ms
25,148 KB |
testcase_09 | AC | 25 ms
26,928 KB |
testcase_10 | AC | 26 ms
24,884 KB |
testcase_11 | WA | - |
testcase_12 | AC | 24 ms
24,880 KB |
testcase_13 | WA | - |
testcase_14 | AC | 25 ms
24,956 KB |
testcase_15 | AC | 26 ms
26,804 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.IO; using System.Linq; using System.Collections.Generic; using System.Text; public class Program { public void Proc() { String inpt = Reader.ReadLine(); int[] list = inpt.Select(a => int.Parse(a.ToString())).ToArray(); string ans = ""; if(list.Sum() % 3 == 0) { ans = "Fizz"; } if(CanBuzz(list)) { ans += "Buzz"; } if(ans.Length == 0) { ans = inpt.ToString(); } Console.WriteLine(ans); } private bool CanBuzz(int[] input) { if(input.Length == 0 && input[0] == 0) { return true; } List<int> num = input.ToList(); int tmp = 0; while(num.Count >= 3) { tmp = num[0] * 100 + num[1] * 10 + num[0]; tmp = tmp % 11; if(tmp == 10) { num.RemoveAt(0); num[0] = 1; num[1] = 0; } else if(tmp > 0) { num.RemoveAt(0); num.RemoveAt(0); num[0] = tmp; } else { num.RemoveAt(0); num.RemoveAt(0); num.RemoveAt(0); } } if(num.Count>=2) { tmp = num[0] * 10 + num[1]; if(tmp % 11 == 0) { return true; } } return num.Count == 0; } private int ToDec(int num) { int ans = 0; if(num == 0) { return 0; } int[] tmp = num.ToString().Select(a => int.Parse(a.ToString())).Reverse().ToArray(); ans += tmp[0]; int mul = 4; for (int i = 1; i < tmp.Length; i++) { ans += mul * tmp[i]; mul = mul * 4; } return ans; } public class Reader { private static StringReader sr; public static bool IsDebug = false; public static string ReadLine() { if (IsDebug) { if (sr == null) { sr = new StringReader(InputText.Trim()); } return sr.ReadLine(); } else { return Console.ReadLine(); } } private static string InputText = @" 11 "; } public static void Main(string[] args) { #if DEBUG Reader.IsDebug = true; #endif Program prg = new Program(); prg.Proc(); } }