結果

問題 No.432 占い(Easy)
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-09-05 00:28:40
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 711 bytes
コンパイル時間 936 ms
コンパイル使用メモリ 107,008 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-04-24 10:15:31
合計ジャッジ時間 2,424 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 25 ms
18,560 KB
testcase_02 AC 25 ms
18,688 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 27 ms
18,560 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
18,816 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 31 ms
18,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 27 ms
19,072 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.Linq;
using System.Collections.Generic;

class No432
{
    static void Main()
    {
        var length = Int32.Parse(Console.ReadLine());
        var ansList = new List<int>();
        for (int i = 0; i < length; ++i)
        {
            var list = Console.ReadLine().ToCharArray().Select(x => x-'0').ToList();
            var l = list.Count();
            for (int j = l - 1; j > 0; --j)
            {
                for (int k = 0; k < j; ++k)
                {
                    list[k] = list[k] + list[k + 1];
                }
            }
            ansList.Add(list[0]);
        }
        foreach(var an in ansList){
            Console.WriteLine(an);
        }
    }
}
0