結果
問題 | No.564 背の順 |
ユーザー | cande398 |
提出日時 | 2017-10-07 01:04:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 506 bytes |
コンパイル時間 | 2,411 ms |
コンパイル使用メモリ | 80,168 KB |
実行使用メモリ | 54,300 KB |
最終ジャッジ日時 | 2024-11-17 03:12:02 |
合計ジャッジ時間 | 4,511 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
41,184 KB |
testcase_01 | AC | 124 ms
41,396 KB |
testcase_02 | AC | 133 ms
41,224 KB |
testcase_03 | WA | - |
testcase_04 | AC | 130 ms
41,400 KB |
testcase_05 | AC | 136 ms
41,104 KB |
testcase_06 | AC | 142 ms
41,872 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 127 ms
40,996 KB |
testcase_10 | AC | 130 ms
40,852 KB |
testcase_11 | AC | 139 ms
41,016 KB |
ソースコード
import java.util.*; public class Main{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); int i; int Nama = sc.nextInt(); int num = sc.nextInt(); int[] height = new int[num]; String[] str = {"st", "nd", "rd", "th"}; height[0] = Nama; for(i=1;i<num;i++){ height[i] = sc.nextInt(); } Arrays.sort(height); for(i=0;i<num;i++){ if(height[i] == Nama)System.out.printf("%d%s\n", num-i, i>num-4?str[num-i-1]:str[3]); } } }