結果

問題 No.851 テストケース
ユーザー preciousydmpreciousydm
提出日時 2019-08-05 11:24:13
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,212 bytes
コンパイル時間 788 ms
コンパイル使用メモリ 105,472 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-07-18 13:27:07
合計ジャッジ時間 1,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,536 KB
testcase_01 AC 21 ms
17,664 KB
testcase_02 WA -
testcase_03 AC 22 ms
17,792 KB
testcase_04 AC 22 ms
17,920 KB
testcase_05 AC 22 ms
17,536 KB
testcase_06 AC 25 ms
17,408 KB
testcase_07 AC 26 ms
17,792 KB
testcase_08 AC 25 ms
17,408 KB
testcase_09 AC 23 ms
17,536 KB
testcase_10 AC 22 ms
17,792 KB
testcase_11 AC 21 ms
17,664 KB
testcase_12 AC 22 ms
17,792 KB
testcase_13 AC 21 ms
17,664 KB
testcase_14 AC 24 ms
17,920 KB
testcase_15 AC 24 ms
17,664 KB
testcase_16 AC 23 ms
17,792 KB
testcase_17 AC 22 ms
17,664 KB
testcase_18 AC 23 ms
17,408 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 yukicoder
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());

            int a = 0;
            int b = 0;
            int c = 0;

            List<int> li = new List<int>();
            List<int> ali = new List<int>();

            try
            {
                for(int i = 0;i < N; i++)
                {
                    li.Add(int.Parse(Console.ReadLine()));
                }
                a = li[0] + li[1];
                b = li[1] + li[2];
                c = li[2] + li[0];

                li[0] = a;
                li[1] = b;
                li[2] = c;

                li.Sort((d, e) => e - d);

                foreach (int i in li)
                {
                    if (!ali.Contains(i))
                    {
                        ali.Add(i);
                    }
                }

                Console.Write(ali[1]);

            }
            catch
            {
                Console.Write("assert");
            }

            Console.ReadLine();
        }
    }
}
0