結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,924 KB
testcase_01 AC 27 ms
24,920 KB
testcase_02 AC 27 ms
26,824 KB
testcase_03 AC 25 ms
22,964 KB
testcase_04 AC 25 ms
25,048 KB
testcase_05 WA -
testcase_06 AC 24 ms
22,836 KB
testcase_07 AC 25 ms
24,756 KB
testcase_08 AC 25 ms
22,968 KB
testcase_09 AC 25 ms
24,540 KB
testcase_10 AC 27 ms
27,092 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 27 ms
24,804 KB
testcase_15 AC 26 ms
26,712 KB
testcase_16 AC 174 ms
43,664 KB
testcase_17 AC 178 ms
43,508 KB
testcase_18 AC 178 ms
43,772 KB
testcase_19 AC 184 ms
43,780 KB
testcase_20 AC 183 ms
45,972 KB
testcase_21 AC 173 ms
43,896 KB
testcase_22 AC 186 ms
43,796 KB
testcase_23 AC 180 ms
45,712 KB
testcase_24 AC 193 ms
41,728 KB
testcase_25 AC 184 ms
45,712 KB
testcase_26 AC 186 ms
43,648 KB
testcase_27 AC 189 ms
45,944 KB
testcase_28 AC 179 ms
43,772 KB
testcase_29 AC 189 ms
43,900 KB
testcase_30 AC 174 ms
43,652 KB
testcase_31 AC 180 ms
44,048 KB
testcase_32 AC 179 ms
43,796 KB
testcase_33 AC 187 ms
43,792 KB
testcase_34 AC 183 ms
41,744 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