結果

問題 No.564 背の順
コンテスト
ユーザー YukimotoPG
提出日時 2019-02-13 16:28:12
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 626 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,822 ms
コンパイル使用メモリ 88,504 KB
実行使用メモリ 42,596 KB
最終ジャッジ日時 2026-04-04 04:37:20
合計ジャッジ時間 3,154 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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%10 == 1) System.out.println(ans+"st");
		else if (ans%10 == 2) System.out.println(ans+"nd");
		else if (ans%10 == 3) System.out.println(ans+"rd");
		else {
			System.out.println(ans+"th");
		}
		
	}
}
0