結果

問題 No.933 おまわりさんこいつです
ユーザー mame_shibemame_shibe
提出日時 2019-12-04 23:11:08
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 974 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 114,600 KB
実行使用メモリ 75,960 KB
最終ジャッジ日時 2024-12-14 14:15:41
合計ジャッジ時間 17,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 RE -
testcase_03 RE -
testcase_04 TLE -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 57 ms
30,464 KB
testcase_18 AC 29 ms
25,352 KB
testcase_19 AC 61 ms
33,084 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 RE -
testcase_23 RE -
testcase_24 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.Text;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using static System.Console;
using static System.Math;

namespace YukiCoder
{
    public class Program
    {
        public static void Main(string[] args)
        {
            new Program().Solve();
        }

        public void Solve()
        {
            int n = int.Parse(ReadLine());
            int[] p = Console.ReadLine().Split().Select(x => int.Parse(x)).ToArray();

            int k = 1;
            for (int i = 0; i < n; i++)
            {
                k *= p[i];
            }
            
            while (k.ToString().Length != 1)
            {
                int sum = 0;
                for (int i = 0; i < k.ToString().Length; i++)
                {
                    sum += int.Parse(k.ToString()[i].ToString());
                }

                k += sum;
            }
            
            WriteLine(k);
        }
    }
}

0