結果
| 問題 | 
                            No.432 占い(Easy)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             pirorirori_n712
                         | 
                    
| 提出日時 | 2018-09-05 00:21:38 | 
| 言語 | C#(csc)  (csc 3.9.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 717 bytes | 
| コンパイル時間 | 947 ms | 
| コンパイル使用メモリ | 116,932 KB | 
| 実行使用メモリ | 29,448 KB | 
| 最終ジャッジ日時 | 2024-11-06 17:11:55 | 
| 合計ジャッジ時間 | 2,812 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 1 WA * 2 RE * 1 | 
| other | AC * 4 WA * 2 RE * 16 | 
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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().Split(' ').Select(x => Int32.Parse(x)).ToList();
            var l = list.Count();
            for (int j = l - 1; j > 0; --j)
            {
                for (int k = 0; k < j; ++k)
                {
                    list[j] = list[j] + list[j + 1];
                }
            }
            ansList.Add(list[0]);
        }
        foreach(var an in ansList){
            Console.WriteLine(an);
        }
    }
}
            
            
            
        
            
pirorirori_n712