結果

問題 No.564 背の順
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 16:28:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 79,264 KB
実行使用メモリ 56,124 KB
最終ジャッジ日時 2023-10-11 11:19:36
合計ジャッジ時間 4,889 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
55,716 KB
testcase_01 AC 137 ms
55,776 KB
testcase_02 AC 145 ms
56,124 KB
testcase_03 AC 137 ms
55,916 KB
testcase_04 AC 143 ms
55,744 KB
testcase_05 AC 148 ms
55,508 KB
testcase_06 AC 150 ms
55,872 KB
testcase_07 AC 140 ms
55,920 KB
testcase_08 AC 147 ms
55,980 KB
testcase_09 AC 134 ms
56,024 KB
testcase_10 AC 137 ms
55,976 KB
testcase_11 AC 137 ms
55,700 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%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