結果

問題 No.434 占い
ユーザー claw88claw88
提出日時 2016-10-15 00:40:44
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,027 bytes
コンパイル時間 4,531 ms
コンパイル使用メモリ 104,064 KB
実行使用メモリ 63,588 KB
最終ジャッジ日時 2024-11-22 09:38:21
合計ジャッジ時間 48,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
22,784 KB
testcase_01 AC 23 ms
59,188 KB
testcase_02 AC 23 ms
22,912 KB
testcase_03 AC 23 ms
59,564 KB
testcase_04 AC 26 ms
23,552 KB
testcase_05 AC 24 ms
58,368 KB
testcase_06 AC 24 ms
23,040 KB
testcase_07 AC 25 ms
59,852 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 237 ms
27,136 KB
testcase_11 AC 45 ms
62,336 KB
testcase_12 AC 26 ms
22,912 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 207 ms
63,588 KB
testcase_20 AC 42 ms
25,344 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 24 ms
17,536 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 538 ms
21,760 KB
testcase_30 AC 73 ms
38,704 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;
using static System.Console;
namespace yuki_432
{
    class Program
    {
        static void Main(string[] args)
        {
            var T = scan;
            var sb = new StringBuilder();
            for (int i = 0; i < T; i++)
            {
                var S = ReadLine();
                
                var d = S;
                var m = "";
                while (d.Length > 1)
                {
                    for (int j = 1; j < d.Length; j++)
                    {
                        var k = int.Parse(d[j].ToString()) + int.Parse(d[j - 1].ToString());
                        m += (k % 10 + (k / 10) % 10).ToString();             
                    }
                    d = m;
                    m = "";

                }
                sb.AppendLine(d);
            }
            Write(sb);
        }

        static int scan { get { return int.Parse(ReadLine()) ; } }
    }
}
0