結果

問題 No.564 背の順
ユーザー jimanojimano
提出日時 2018-01-27 14:41:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 4,852 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 54,796 KB
最終ジャッジ日時 2024-06-09 05:27:44
合計ジャッジ時間 6,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,184 KB
testcase_01 AC 150 ms
54,316 KB
testcase_02 AC 166 ms
54,300 KB
testcase_03 AC 154 ms
54,328 KB
testcase_04 AC 158 ms
54,072 KB
testcase_05 AC 161 ms
54,392 KB
testcase_06 AC 163 ms
54,164 KB
testcase_07 AC 155 ms
54,608 KB
testcase_08 AC 164 ms
53,992 KB
testcase_09 AC 149 ms
54,796 KB
testcase_10 AC 151 ms
54,152 KB
testcase_11 AC 152 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No0564_2 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int height = sc.nextInt();
			int num = sc.nextInt();
			int cnt = 1;
			int[] h = new int[num];
			h[0] = height;

			for (int i = 1; i < num; i++) {
				h[i] = sc.nextInt();
			}
			Arrays.sort(h);

			for (int i = h.length - 1; i > 0; i--) {
				if (h[i] == height)
					break;
				cnt++;
			}

			// 一の位の判断
			if (cnt % 10 == 1) {
				System.out.println(cnt + "st");
			} else if (cnt % 10 == 2) {
				System.out.println(cnt + "nd");
			} else if (cnt % 10 == 3) {
				System.out.println(cnt + "rd");
			} else {
				System.out.println(cnt + "th");
			}
		}
	}
}
0