結果

問題 No.933 おまわりさんこいつです
ユーザー tomomo2b2tomomo2b2
提出日時 2019-11-29 22:18:41
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 985 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 115,352 KB
実行使用メモリ 75,384 KB
最終ジャッジ日時 2024-11-20 23:28:36
合計ジャッジ時間 19,398 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
25,344 KB
testcase_01 AC 35 ms
65,960 KB
testcase_02 AC 36 ms
25,088 KB
testcase_03 AC 36 ms
34,572 KB
testcase_04 AC 35 ms
25,472 KB
testcase_05 AC 34 ms
72,292 KB
testcase_06 AC 35 ms
25,088 KB
testcase_07 AC 35 ms
75,384 KB
testcase_08 AC 34 ms
25,216 KB
testcase_09 AC 35 ms
19,840 KB
testcase_10 AC 35 ms
20,096 KB
testcase_11 AC 44 ms
21,888 KB
testcase_12 AC 55 ms
24,320 KB
testcase_13 AC 362 ms
24,564 KB
testcase_14 AC 745 ms
45,824 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 137 ms
37,376 KB
testcase_18 AC 33 ms
19,712 KB
testcase_19 AC 774 ms
50,364 KB
testcase_20 TLE -
testcase_21 AC 35 ms
19,840 KB
testcase_22 AC 35 ms
19,456 KB
testcase_23 TLE -
testcase_24 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.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;
        }
        Console.WriteLine(DigitSum(prod));
    }

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