結果

問題 No.564 背の順
ユーザー GodNegotoGodNegoto
提出日時 2019-11-29 14:47:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 3,979 ms
コンパイル使用メモリ 77,132 KB
実行使用メモリ 42,072 KB
最終ジャッジ日時 2024-11-20 21:19:13
合計ジャッジ時間 6,590 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
41,548 KB
testcase_01 AC 138 ms
41,580 KB
testcase_02 AC 158 ms
41,500 KB
testcase_03 WA -
testcase_04 AC 155 ms
41,756 KB
testcase_05 AC 164 ms
41,568 KB
testcase_06 AC 151 ms
41,236 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 140 ms
41,196 KB
testcase_10 AC 156 ms
41,840 KB
testcase_11 AC 140 ms
41,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<Integer> list = new ArrayList<Integer>();
		int H = sc.nextInt();
		list.add(H);
		int N = sc.nextInt();
		for(int i = 1; i < N; i++) {
			list.add(sc.nextInt());
		}
		Collections.sort(list);
		Collections.reverse(list);
		int r = list.indexOf(H) + 1;
		switch (r) {
		case 1:
			System.out.println("1st");
			break;
		case 2:
			System.out.println("2nd");
			break;
		case 3:
			System.out.println("3rd");
			break;
		default:
			System.out.println(r + "th");
		}
	}
}
0