結果

問題 No.593 4進FizzBuzz
ユーザー papinianuspapinianus
提出日時 2017-11-14 13:57:07
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 852 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 114,576 KB
実行使用メモリ 45,844 KB
最終ジャッジ日時 2024-11-25 02:03:37
合計ジャッジ時間 6,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
26,840 KB
testcase_01 AC 26 ms
26,964 KB
testcase_02 AC 25 ms
26,960 KB
testcase_03 AC 25 ms
24,668 KB
testcase_04 AC 24 ms
23,088 KB
testcase_05 WA -
testcase_06 AC 25 ms
26,880 KB
testcase_07 AC 24 ms
24,792 KB
testcase_08 AC 24 ms
26,712 KB
testcase_09 AC 24 ms
24,788 KB
testcase_10 AC 25 ms
24,796 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 25 ms
24,752 KB
testcase_15 AC 24 ms
26,972 KB
testcase_16 AC 170 ms
41,756 KB
testcase_17 AC 174 ms
43,768 KB
testcase_18 AC 171 ms
43,672 KB
testcase_19 AC 182 ms
45,708 KB
testcase_20 AC 172 ms
43,924 KB
testcase_21 AC 176 ms
43,804 KB
testcase_22 AC 186 ms
45,584 KB
testcase_23 AC 172 ms
43,656 KB
testcase_24 AC 170 ms
43,776 KB
testcase_25 AC 174 ms
43,652 KB
testcase_26 AC 176 ms
43,524 KB
testcase_27 AC 184 ms
43,908 KB
testcase_28 AC 181 ms
43,608 KB
testcase_29 AC 184 ms
43,800 KB
testcase_30 AC 173 ms
43,668 KB
testcase_31 AC 175 ms
45,844 KB
testcase_32 AC 177 ms
43,632 KB
testcase_33 AC 186 ms
45,844 KB
testcase_34 AC 176 ms
45,696 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.Linq;
using static System.Console;
using static System.String;

namespace No593
{
    class Program
    {
        static void Main(string[] args)
        {
            var p4 = ReadLine().Trim();
            WriteLine(ToFizzBuzzString(p4));
        }
        static string ToFizzBuzzString(string p4)
        {
            var isTriple = p4.ToCharArray().Select(x => Convert.ToInt64(x)).Sum() % 3 == 0;
            var evens = p4.ToCharArray().Where((x, i) => i % 2 == 0).Select(x => Convert.ToInt64(x)).Sum();
            var odds = p4.ToCharArray().Where((x, i) => i % 2 == 1).Select(x => Convert.ToInt64(x)).Sum();
            var isQuintuple = Math.Abs(evens - odds) % 5 == 0;
            return $"{(isTriple ? "Fizz" : Empty)}{(isQuintuple ? "Buzz" : Empty)}{(!isTriple && !isQuintuple ? p4 : Empty)}";
        }
    }
}
0