結果
問題 | No.564 背の順 |
ユーザー | misk703 |
提出日時 | 2018-06-04 14:52:44 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 171 ms / 2,000 ms |
コード長 | 643 bytes |
コンパイル時間 | 3,793 ms |
コンパイル使用メモリ | 78,284 KB |
実行使用メモリ | 42,772 KB |
最終ジャッジ日時 | 2024-06-30 09:37:19 |
合計ジャッジ時間 | 6,511 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
42,200 KB |
testcase_01 | AC | 158 ms
42,424 KB |
testcase_02 | AC | 167 ms
42,672 KB |
testcase_03 | AC | 161 ms
42,512 KB |
testcase_04 | AC | 163 ms
42,440 KB |
testcase_05 | AC | 171 ms
42,708 KB |
testcase_06 | AC | 168 ms
42,552 KB |
testcase_07 | AC | 164 ms
42,632 KB |
testcase_08 | AC | 170 ms
42,772 KB |
testcase_09 | AC | 160 ms
42,580 KB |
testcase_10 | AC | 157 ms
42,676 KB |
testcase_11 | AC | 161 ms
42,420 KB |
ソースコード
import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; public class No564 { public static void main(String[] args) { Scanner s = new Scanner(System.in); ArrayList<Integer> list = new ArrayList<>(); int H = s.nextInt(); int N = s.nextInt(); list.add(H); for(int i=1;i<N;i++){ list.add(s.nextInt()); } Collections.sort(list); Collections.reverse(list); int rank = list.indexOf(H) + 1; String out; if(rank % 10 == 1){ out = "st"; }else if(rank % 10 == 2){ out = "nd"; }else if(rank % 10 == 3){ out = "rd"; }else{ out = "th"; } System.out.println(rank + out); } }