結果

問題 No.851 テストケース
ユーザー curryudon08curryudon08
提出日時 2020-07-10 18:54:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 36 ms / 3,153 ms
コード長 858 bytes
コンパイル時間 2,692 ms
コンパイル使用メモリ 112,960 KB
実行使用メモリ 28,640 KB
最終ジャッジ日時 2024-10-11 03:27:04
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
28,268 KB
testcase_01 AC 34 ms
28,472 KB
testcase_02 AC 28 ms
26,368 KB
testcase_03 AC 34 ms
26,544 KB
testcase_04 AC 35 ms
26,044 KB
testcase_05 AC 34 ms
26,544 KB
testcase_06 AC 35 ms
26,288 KB
testcase_07 AC 35 ms
28,264 KB
testcase_08 AC 35 ms
28,260 KB
testcase_09 AC 35 ms
28,272 KB
testcase_10 AC 35 ms
26,088 KB
testcase_11 AC 34 ms
28,264 KB
testcase_12 AC 34 ms
26,688 KB
testcase_13 AC 36 ms
28,640 KB
testcase_14 AC 35 ms
28,216 KB
testcase_15 AC 35 ms
28,344 KB
testcase_16 AC 34 ms
26,556 KB
testcase_17 AC 34 ms
26,428 KB
testcase_18 AC 34 ms
28,468 KB
testcase_19 AC 27 ms
28,032 KB
testcase_20 AC 26 ms
25,788 KB
testcase_21 AC 33 ms
26,176 KB
testcase_22 AC 34 ms
28,216 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;

namespace _0851
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());

            var items = new long[n];
            for(var i = 0; i < n; i++){
                var s = Console.ReadLine().Split();
                if(s.Length != 1){
                    Console.WriteLine("\"assert\"");
                    return;
                }

                items[i] = long.Parse(s[0]);
            }

            var x = new List<long>();
            x.Add(items[0] + items[1]);
            x.Add(items[0] + items[2]);
            x.Add(items[1] + items[2]);

            var h = new HashSet<long>(x);
            var ans = h.OrderByDescending(t => t).Skip(1).First();
            Console.WriteLine(ans);
        }
    }
}
0