結果

問題 No.564 背の順
ユーザー kimnykimny
提出日時 2017-12-03 21:54:09
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 112,720 KB
実行使用メモリ 26,272 KB
最終ジャッジ日時 2024-05-06 09:18:57
合計ジャッジ時間 3,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 23 ms
17,792 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 23 ms
17,920 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 22 ms
17,792 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yukicoder_564 {
    class Program {
        static void Main(string[] args) {
            string[] s = Console.ReadLine().Split(' ');
            int h = int.Parse(s[0]);
            int n = int.Parse(s[1]);
            int[] H = new int[n - 1];
            int count = 0;
            for(int i = 0; i < n - 1; i++) {
                if (h < H[i]) {
                    count++;
                }
            }
            count++;
            if(count%10==1) {
                Console.WriteLine(count + "st");
            }else if (count % 10 == 2) {
                Console.WriteLine(count + "nd");
            }else if (count % 10 == 3) {
                Console.WriteLine(count + "rd");
            } else {
                Console.WriteLine(count + "th");
            }
        }
    }
}
0