結果

問題 No.564 背の順
ユーザー tsunabittsunabit
提出日時 2018-07-08 18:48:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 4,157 ms
コンパイル使用メモリ 88,700 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-07-08 00:19:10
合計ジャッジ時間 6,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
41,876 KB
testcase_01 AC 151 ms
41,568 KB
testcase_02 AC 161 ms
41,804 KB
testcase_03 AC 156 ms
41,492 KB
testcase_04 AC 155 ms
41,600 KB
testcase_05 AC 163 ms
41,544 KB
testcase_06 AC 162 ms
41,876 KB
testcase_07 AC 138 ms
40,608 KB
testcase_08 WA -
testcase_09 AC 152 ms
41,356 KB
testcase_10 AC 152 ms
41,440 KB
testcase_11 AC 155 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No564 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int n = sc.nextInt();
		Integer[] hh = new Integer[n];
		for(int i = 0; i < n - 1; i++) {
			hh[i] = sc.nextInt();
		}
		hh[n - 1] = h;
		Arrays.sort(hh, Collections.reverseOrder());

		for(int i = 0; i < n; i++) {
			if(h == hh[i]) {
				if(i == 0) {
					System.out.println(i + 1 + "st");
				}else if(i%10 == 1) {
					System.out.println(i + 1 + "nd");
				}else if(i%10 == 2) {
					System.out.println(i + 1 + "rd");
				}else {
					System.out.println(i + 1 + "th");
				}
				return;
			}
		}

	}
}
0