結果

問題 No.564 背の順
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-05-10 23:06:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 1,284 bytes
コンパイル時間 2,780 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 42,164 KB
最終ジャッジ日時 2024-06-28 03:31:24
合計ジャッジ時間 5,007 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,784 KB
testcase_01 AC 154 ms
41,688 KB
testcase_02 AC 165 ms
41,836 KB
testcase_03 AC 160 ms
41,548 KB
testcase_04 AC 158 ms
41,768 KB
testcase_05 AC 167 ms
41,788 KB
testcase_06 AC 163 ms
42,164 KB
testcase_07 AC 159 ms
41,884 KB
testcase_08 AC 168 ms
41,864 KB
testcase_09 AC 150 ms
41,948 KB
testcase_10 AC 153 ms
41,452 KB
testcase_11 AC 152 ms
42,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int nama = in.nextInt();
        int n = in.nextInt();
        int[] h = new int[n-1];
        for(int i=0; i<n-1; i++)
            h[i] = in.nextInt();

        Arrays.sort(h);

        int pos = n;
        for(int i=n-2; i>=0; i--) {
            if(nama < h[i]) {
                continue;
            } else if(i == n-2 && nama > h[i]) {
                pos = 1;
                break;
            } else {
                pos = n - i - 1;
                break;
            }
        }

        /*
        switch(pos%10) {
        case 1:
            System.out.println(pos + "st");
            break;
        case 2:
            System.out.println(pos + "nd");
            break;
        case 3:
            System.out.println(pos + "rd");
            break;
        default:
            System.out.println(pos + "th");
            break;
        }
        */

          if(pos % 10 == 1)
          System.out.println(pos + "st");
          else if(pos % 10 == 2)
          System.out.println(pos + "nd");
          else if(pos % 10 == 3)
          System.out.println(pos + "rd");
          else
          System.out.println(pos + "th");

    }
}
0