結果

問題 No.593 4進FizzBuzz
ユーザー バカらっくバカらっく
提出日時 2017-11-10 23:34:06
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 2,098 bytes
コンパイル時間 1,137 ms
コンパイル使用メモリ 109,312 KB
実行使用メモリ 78,148 KB
最終ジャッジ日時 2024-11-24 15:39:52
合計ジャッジ時間 60,231 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
24,064 KB
testcase_01 AC 29 ms
33,804 KB
testcase_02 AC 29 ms
24,064 KB
testcase_03 AC 29 ms
77,768 KB
testcase_04 AC 29 ms
23,936 KB
testcase_05 AC 29 ms
77,900 KB
testcase_06 AC 29 ms
24,064 KB
testcase_07 AC 27 ms
78,012 KB
testcase_08 AC 28 ms
23,808 KB
testcase_09 AC 28 ms
34,012 KB
testcase_10 AC 27 ms
24,192 KB
testcase_11 AC 28 ms
34,004 KB
testcase_12 AC 29 ms
24,192 KB
testcase_13 AC 29 ms
77,880 KB
testcase_14 AC 28 ms
23,936 KB
testcase_15 AC 28 ms
78,148 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 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.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(inpt)) {
            ans += "Buzz";
        }
        if(ans.Length == 0) {
            ans = inpt.ToString();
        }

        Console.WriteLine(ans);
        
    }

    private bool CanBuzz(string input) {
        if(input.Length == 1 && input[0] == '0') {
            return true;
        }
        string tmp = input;
        while(tmp.Length > 11) {
            long num = long.Parse(tmp.Substring(0, 11));
            num = num % 11;
            tmp = num + tmp.Substring(11);
        }
        if(tmp.Length == 0) {
            return true;
        }
        return long.Parse(tmp) % 11 == 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 = @"

55

";
    }

    public static void Main(string[] args)
    {
#if DEBUG
        Reader.IsDebug = true;
#endif
        Program prg = new Program();
        prg.Proc();
    }
}
0