結果

問題 No.933 おまわりさんこいつです
ユーザー tomomo2b2tomomo2b2
提出日時 2019-11-29 22:19:45
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 1,020 bytes
コンパイル時間 790 ms
コンパイル使用メモリ 110,244 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-11-20 23:29:01
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
19,712 KB
testcase_01 AC 34 ms
20,096 KB
testcase_02 AC 35 ms
20,096 KB
testcase_03 AC 32 ms
19,584 KB
testcase_04 AC 33 ms
19,712 KB
testcase_05 AC 35 ms
19,584 KB
testcase_06 AC 34 ms
19,968 KB
testcase_07 AC 35 ms
19,968 KB
testcase_08 AC 34 ms
19,456 KB
testcase_09 AC 35 ms
19,968 KB
testcase_10 AC 35 ms
19,840 KB
testcase_11 AC 39 ms
20,224 KB
testcase_12 AC 39 ms
20,352 KB
testcase_13 AC 45 ms
20,736 KB
testcase_14 AC 46 ms
20,992 KB
testcase_15 AC 55 ms
22,144 KB
testcase_16 AC 103 ms
26,752 KB
testcase_17 AC 117 ms
30,976 KB
testcase_18 AC 34 ms
19,840 KB
testcase_19 AC 143 ms
32,896 KB
testcase_20 AC 112 ms
30,336 KB
testcase_21 AC 34 ms
19,712 KB
testcase_22 AC 34 ms
19,968 KB
testcase_23 AC 788 ms
40,064 KB
testcase_24 AC 830 ms
39,552 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 System.Collections.Generic;
using System.IO;
using System.Numerics;

class MyClass
{
    public static int DigitSum(BigInteger n)
    {
        if (n < 10)
        {
            return (int)n;
        }
        else
        {
            BigInteger dsum = 0;
            while (n > 0)
            {
                dsum += n % 10;
                n /= 10;
            }
            return DigitSum(dsum);
        }
    }

    public static void Solve()
    {
        var N = int.Parse(Console.ReadLine());
        var P = Console.ReadLine().Split().Select(BigInteger.Parse).ToArray();
        BigInteger prod = 1;
        foreach (var item in P)
        {
            prod *= item;
            prod = DigitSum(prod);
        }
        Console.WriteLine(DigitSum(prod));
    }

    public static void Main()
    {
        var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
        Console.SetOut(sw);
        Solve();
        Console.Out.Flush();
    }
}
0