結果
問題 | No.564 背の順 |
ユーザー | Risen |
提出日時 | 2017-09-08 22:26:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 916 bytes |
コンパイル時間 | 1,002 ms |
コンパイル使用メモリ | 109,440 KB |
実行使用メモリ | 19,328 KB |
最終ジャッジ日時 | 2024-11-07 12:03:37 |
合計ジャッジ時間 | 1,980 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 9 |
コンパイルメッセージ
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 Solution { static void Main() { var vals = Console.ReadLine().Split(' ').Select(int.Parse).ToArray(); int h = vals[0]; int n = vals[1]; var hs = new int[n]; hs[0] = h; for (int i = 1; i < n; i++) { hs[i] = int.Parse(Console.ReadLine()); } var index = hs.OrderByDescending(i => i).ToList().FindIndex(i => i == h) + 1; var result = index.ToString(); switch (index % 10) { case 1: result += "st"; break; case 2: result += "nd"; break; case 3: result += "rd"; break; default: result += "th"; break; } Console.WriteLine(result); } }