結果

問題 No.564 背の順
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 16:26:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 608 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 79,884 KB
実行使用メモリ 58,424 KB
最終ジャッジ日時 2023-10-11 11:19:30
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
55,952 KB
testcase_01 AC 123 ms
56,168 KB
testcase_02 AC 146 ms
56,144 KB
testcase_03 WA -
testcase_04 AC 143 ms
56,704 KB
testcase_05 AC 152 ms
55,844 KB
testcase_06 AC 134 ms
55,908 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 125 ms
55,900 KB
testcase_10 AC 140 ms
55,660 KB
testcase_11 AC 124 ms
55,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int nama = sc.nextInt();
		int n = sc.nextInt();
		Integer[] ar = new Integer[n];
		ar[0] = nama;
		for (int i=1; i<n; i++) ar[i] = sc.nextInt();
		Arrays.sort(ar, Comparator.reverseOrder());
		
		int ans = -1;
		for (int i=0; i<n; i++) {
			if (ar[i] == nama) {
				ans = i+1;
			}
		}
		
		if (ans == 1) System.out.println("1st");
		else if (ans == 2) System.out.println("2nd");
		else if (ans == 3) System.out.println("3rd");
		else {
			System.out.println(ans+"th");
		}
		
	}
}
0