結果

問題 No.564 背の順
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2018-04-14 16:31:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,057 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 79,292 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-06-26 22:21:20
合計ジャッジ時間 4,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,336 KB
testcase_01 AC 120 ms
40,304 KB
testcase_02 AC 139 ms
41,448 KB
testcase_03 AC 130 ms
41,012 KB
testcase_04 AC 132 ms
41,448 KB
testcase_05 AC 139 ms
41,792 KB
testcase_06 AC 137 ms
41,380 KB
testcase_07 AC 119 ms
41,156 KB
testcase_08 AC 144 ms
41,264 KB
testcase_09 AC 133 ms
41,204 KB
testcase_10 AC 126 ms
41,256 KB
testcase_11 AC 129 ms
41,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        List<Integer> list = new ArrayList<>();
        int h0 = sc.nextInt();
        list.add(h0);
        
        int n = sc.nextInt();
        for(int i = 0; i < n-1; i++) {
            int tmp = sc.nextInt();
            list.add(tmp);
        }
        
        Collections.sort(list);
        Collections.reverse(list);
        
        for(int i = 0; i < n; i++) {
            if(h0 == list.get(i)) {
                display(i+1);
                break;
            }
        }
    }
    
    static void display(int index) {
        StringBuilder sb = new StringBuilder();
        sb.append(index);
        int redi = index%10;
        if(redi == 1) {
            sb.append("st");
        } else if(redi == 2) {
            sb.append("nd");
        } else if(redi == 3) {
            sb.append("rd");
        } else {
            sb.append("th");
        }
        System.out.println(sb.toString());
    }
}
0