結果
問題 | No.564 背の順 |
ユーザー | TwinkleStar74 |
提出日時 | 2017-09-30 14:56:06 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 75 ms / 2,000 ms |
コード長 | 1,202 bytes |
コンパイル時間 | 3,858 ms |
コンパイル使用メモリ | 85,872 KB |
実行使用メモリ | 38,480 KB |
最終ジャッジ日時 | 2024-11-15 20:47:15 |
合計ジャッジ時間 | 5,403 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
38,108 KB |
testcase_01 | AC | 71 ms
37,832 KB |
testcase_02 | AC | 70 ms
38,220 KB |
testcase_03 | AC | 75 ms
38,096 KB |
testcase_04 | AC | 70 ms
38,028 KB |
testcase_05 | AC | 74 ms
37,908 KB |
testcase_06 | AC | 73 ms
38,480 KB |
testcase_07 | AC | 72 ms
38,068 KB |
testcase_08 | AC | 71 ms
37,960 KB |
testcase_09 | AC | 71 ms
37,912 KB |
testcase_10 | AC | 72 ms
38,352 KB |
testcase_11 | AC | 71 ms
37,996 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Arrays; public class No564 { public static void main(String[] args){ try{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] temp = br.readLine().split(" "); int H = Integer.parseInt(temp[0]); int N = Integer.parseInt(temp[1]); int[] heights = new int[N]; for(int i=1; i < N; i++) heights[i] = Integer.parseInt(br.readLine()); heights[0] = H; Arrays.sort(heights); int count = 0; for(int i=0; i < N; i++){ if(heights[i] == H){ count = i+1; break; } } int hitoketa = (N - count + 1) % 10; switch(hitoketa){ case 1: System.out.println((N - count + 1) + "st"); break; case 2: System.out.println((N - count + 1) + "nd"); break; case 3: System.out.println((N - count + 1) + "rd"); break; default: System.out.println((N - count + 1) + "th"); break; } }catch(Exception e){ e.getStackTrace(); } } }