結果

問題 No.432 占い(Easy)
ユーザー NoNo
提出日時 2016-10-14 23:35:10
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 1,262 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 111,416 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-11-22 06:29:35
合計ジャッジ時間 4,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
17,920 KB
testcase_01 AC 25 ms
17,792 KB
testcase_02 AC 26 ms
17,792 KB
testcase_03 AC 25 ms
17,792 KB
testcase_04 AC 29 ms
18,688 KB
testcase_05 AC 26 ms
17,920 KB
testcase_06 AC 26 ms
18,048 KB
testcase_07 AC 29 ms
18,560 KB
testcase_08 AC 25 ms
17,664 KB
testcase_09 AC 28 ms
17,920 KB
testcase_10 AC 28 ms
18,560 KB
testcase_11 AC 58 ms
21,888 KB
testcase_12 AC 393 ms
21,888 KB
testcase_13 AC 396 ms
21,632 KB
testcase_14 AC 57 ms
21,632 KB
testcase_15 AC 26 ms
17,792 KB
testcase_16 AC 26 ms
17,792 KB
testcase_17 AC 267 ms
21,888 KB
testcase_18 AC 193 ms
21,632 KB
testcase_19 AC 133 ms
21,760 KB
testcase_20 AC 72 ms
21,760 KB
testcase_21 AC 80 ms
21,760 KB
testcase_22 AC 28 ms
18,560 KB
testcase_23 AC 27 ms
18,176 KB
testcase_24 AC 28 ms
17,792 KB
testcase_25 AC 27 ms
18,048 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yukikoda
{
    class Program
    {
        static void Main(string[] args)
        {
            int t = int.Parse(Console.ReadLine());
            var s = new List<string>();
            for (int i = 0; i < t; i++)
            {
                s.Add(Console.ReadLine());
            }

            foreach (var item in s)
            {
                Console.WriteLine(aa(item));
            }
        }

        static string aa(string s)
        {
            if (s.Length == 1)
            {
                return s;
            }

            int a;
            string s2 = "";

            while (s.Length != 1)
            {
                s2 = "";
                for (int i = 0; i < s.Length - 1; i++)
                {
                    a = int.Parse(s[i].ToString()) + int.Parse(s[i + 1].ToString());


                    if (a >= 10)
                    {
                        a = int.Parse(a.ToString()[0].ToString()) + int.Parse(a.ToString()[1].ToString());
                    }
                    s2 = s2 + a;
                }
                s = s2;
            }

            return s2;
        }

    }
}
0