結果

問題 No.432 占い(Easy)
ユーザー claw88claw88
提出日時 2016-10-14 22:36:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 112,508 KB
実行使用メモリ 29,908 KB
最終ジャッジ日時 2024-11-22 07:27:41
合計ジャッジ時間 3,412 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,604 KB
testcase_01 AC 24 ms
23,652 KB
testcase_02 AC 24 ms
25,820 KB
testcase_03 AC 23 ms
21,560 KB
testcase_04 AC 26 ms
21,812 KB
testcase_05 AC 24 ms
23,784 KB
testcase_06 AC 24 ms
23,524 KB
testcase_07 AC 26 ms
23,528 KB
testcase_08 AC 24 ms
23,728 KB
testcase_09 AC 24 ms
23,776 KB
testcase_10 AC 26 ms
23,900 KB
testcase_11 AC 46 ms
29,908 KB
testcase_12 AC 279 ms
29,772 KB
testcase_13 AC 277 ms
29,648 KB
testcase_14 AC 46 ms
29,908 KB
testcase_15 AC 24 ms
23,776 KB
testcase_16 AC 24 ms
23,772 KB
testcase_17 AC 275 ms
27,856 KB
testcase_18 AC 141 ms
27,980 KB
testcase_19 AC 99 ms
29,904 KB
testcase_20 AC 56 ms
27,860 KB
testcase_21 AC 61 ms
25,688 KB
testcase_22 AC 25 ms
23,856 KB
testcase_23 AC 25 ms
23,648 KB
testcase_24 AC 24 ms
25,692 KB
testcase_25 AC 24 ms
23,604 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