結果
問題 | No.571 3人兄弟(その2) |
ユーザー | kmtrc130 |
提出日時 | 2019-03-19 12:04:09 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 823 bytes |
コンパイル時間 | 3,146 ms |
コンパイル使用メモリ | 113,008 KB |
実行使用メモリ | 27,312 KB |
最終ジャッジ日時 | 2024-09-13 16:23:06 |
合計ジャッジ時間 | 2,306 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
25,312 KB |
testcase_01 | AC | 35 ms
23,268 KB |
testcase_02 | AC | 34 ms
25,220 KB |
testcase_03 | AC | 34 ms
27,312 KB |
testcase_04 | AC | 34 ms
25,132 KB |
testcase_05 | AC | 34 ms
25,392 KB |
testcase_06 | AC | 34 ms
25,268 KB |
testcase_07 | AC | 34 ms
25,180 KB |
testcase_08 | AC | 34 ms
25,256 KB |
testcase_09 | AC | 34 ms
25,564 KB |
testcase_10 | AC | 33 ms
25,180 KB |
testcase_11 | AC | 34 ms
27,216 KB |
testcase_12 | AC | 34 ms
25,304 KB |
testcase_13 | AC | 34 ms
25,304 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; class Program { public void Solve() { List<KeyValuePair<string, int[]>> HW = new List<KeyValuePair<string, int[]>>(); HW.Add(new KeyValuePair<string, int[]>("A", Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray())); HW.Add(new KeyValuePair<string, int[]>("B", Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray())); HW.Add(new KeyValuePair<string, int[]>("C", Console.ReadLine().Split(' ').Select(x => int.Parse(x)).ToArray())); foreach (var item in HW.OrderByDescending(x => x.Value[0]).ThenBy(x => x.Value[1])) { Console.WriteLine(item.Key); } } static void Main() { var solver = new Program(); solver.Solve(); } }