結果

問題 No.593 4進FizzBuzz
ユーザー バカらっくバカらっく
提出日時 2017-11-10 22:47:29
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,611 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 115,724 KB
実行使用メモリ 33,640 KB
最終ジャッジ日時 2024-05-03 12:59:19
合計ジャッジ時間 4,935 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
18,688 KB
testcase_01 AC 27 ms
18,816 KB
testcase_02 AC 27 ms
18,816 KB
testcase_03 AC 27 ms
18,560 KB
testcase_04 AC 27 ms
18,816 KB
testcase_05 AC 27 ms
18,944 KB
testcase_06 AC 27 ms
18,560 KB
testcase_07 AC 26 ms
18,816 KB
testcase_08 AC 26 ms
18,944 KB
testcase_09 AC 27 ms
18,816 KB
testcase_10 AC 27 ms
18,944 KB
testcase_11 AC 29 ms
18,816 KB
testcase_12 AC 28 ms
18,944 KB
testcase_13 AC 27 ms
18,944 KB
testcase_14 AC 27 ms
18,816 KB
testcase_15 AC 28 ms
18,560 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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()
    {
        int inpt = int.Parse(Reader.ReadLine());
        int dec = ToDec(inpt);

        string ans = "";
        if(dec % 3 == 0) {
            ans = "Fizz";
        }
        if(dec%5==0) {
            ans += "Buzz";
        }
        if(ans.Length == 0) {
            ans = inpt.ToString();
        }

        Console.WriteLine(ans);
        
    }

    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 = @"

33


";
    }

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