結果

問題 No.564 背の順
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 18:02:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 3,593 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 54,652 KB
最終ジャッジ日時 2024-04-25 18:12:19
合計ジャッジ時間 5,419 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,552 KB
testcase_01 AC 134 ms
54,496 KB
testcase_02 AC 145 ms
54,376 KB
testcase_03 AC 137 ms
54,344 KB
testcase_04 AC 134 ms
54,328 KB
testcase_05 AC 146 ms
54,652 KB
testcase_06 AC 142 ms
54,352 KB
testcase_07 AC 137 ms
54,344 KB
testcase_08 AC 145 ms
54,436 KB
testcase_09 AC 124 ms
53,688 KB
testcase_10 AC 115 ms
53,316 KB
testcase_11 AC 132 ms
54,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No564 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int h = sc.nextInt();
        int n = sc.nextInt();
        int cnt = 1, other;
        for(int i = 0; i < n - 1; i++) {
            other = sc.nextInt();
            if(other > h) cnt++;
        }

        switch(cnt % 10) {
        case 1:
            System.out.println(cnt + "st");
            break;
        case 2:
            System.out.println(cnt + "nd");
            break;
        case 3:
            System.out.println(cnt + "rd");
            break;
        default:
            System.out.println(cnt + "th");
            break;
        }
    }
}
0