結果
問題 | No.564 背の順 |
ユーザー | FVRChan |
提出日時 | 2017-09-29 12:04:42 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 150 ms / 2,000 ms |
コード長 | 722 bytes |
コンパイル時間 | 2,678 ms |
コンパイル使用メモリ | 85,668 KB |
実行使用メモリ | 54,220 KB |
最終ジャッジ日時 | 2024-11-15 19:49:26 |
合計ジャッジ時間 | 5,229 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 140 ms
53,916 KB |
testcase_01 | AC | 132 ms
54,208 KB |
testcase_02 | AC | 147 ms
54,220 KB |
testcase_03 | AC | 138 ms
53,772 KB |
testcase_04 | AC | 141 ms
53,940 KB |
testcase_05 | AC | 150 ms
53,984 KB |
testcase_06 | AC | 148 ms
54,184 KB |
testcase_07 | AC | 138 ms
54,128 KB |
testcase_08 | AC | 143 ms
54,136 KB |
testcase_09 | AC | 136 ms
54,048 KB |
testcase_10 | AC | 134 ms
54,172 KB |
testcase_11 | AC | 140 ms
54,128 KB |
ソースコード
import java.util.Comparator; import java.util.LinkedList; import java.util.Scanner; public class Main{ private static Scanner sc=new Scanner(System.in); public static void main(String args[])throws Exception{ int height=sc.nextInt(),n=sc.nextInt(); LinkedList<Integer>queue=new LinkedList<Integer>(); queue.offer(height); for(int i=0;i<n-1;i++)queue.offer(sc.nextInt()); queue.sort(Comparator.reverseOrder()); int counter=0; for(int i=0;i<queue.size();i++){ if(queue.get(i)==height){ counter=i+1; break; } }String s=String.valueOf(counter); switch(counter%10){ case 1:s+="st";break; case 2:s+="nd";break; case 3:s+="rd";break; default:s+="th";break; }System.out.println(s); } }