結果
問題 | No.564 背の順 |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-09 03:11:03 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 2,940 ms |
コンパイル使用メモリ | 81,236 KB |
実行使用メモリ | 54,696 KB |
最終ジャッジ日時 | 2024-10-02 06:45:16 |
合計ジャッジ時間 | 4,858 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 146 ms
54,544 KB |
testcase_02 | WA | - |
testcase_03 | AC | 144 ms
54,392 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 156 ms
54,164 KB |
testcase_07 | AC | 153 ms
54,280 KB |
testcase_08 | AC | 155 ms
54,188 KB |
testcase_09 | AC | 143 ms
54,284 KB |
testcase_10 | AC | 143 ms
54,264 KB |
testcase_11 | AC | 147 ms
54,100 KB |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int h = sc.nextInt(); int n = sc.nextInt(); Integer[] ints = new Integer[n-1]; for (int i=0; i<n-1; i++) { ints[i] = sc.nextInt(); } Arrays.sort(ints,Comparator.reverseOrder()); int rank = 0; for (int i=0; i<n-2; i++) { if (ints[i]>h && ints[i+1]<h) {rank = i+2;} } if (ints[0]<h) {rank = 1;} else if (ints[n-2]>h) {rank = n;} int temp = rank%10; if (temp==1) {System.out.println(rank+"st");} else if (temp==2) {System.out.println(rank+"nd");} else if (temp==3) {System.out.println(rank+"rd");} else {System.out.println(temp+"th");} } }