結果

問題 No.564 背の順
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 23:09:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 3,893 ms
コンパイル使用メモリ 76,096 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-06-09 11:40:32
合計ジャッジ時間 6,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,796 KB
testcase_01 AC 126 ms
54,260 KB
testcase_02 AC 134 ms
54,228 KB
testcase_03 AC 129 ms
54,124 KB
testcase_04 AC 130 ms
54,016 KB
testcase_05 AC 144 ms
54,268 KB
testcase_06 AC 138 ms
53,956 KB
testcase_07 AC 117 ms
52,984 KB
testcase_08 AC 140 ms
54,224 KB
testcase_09 AC 127 ms
53,940 KB
testcase_10 AC 128 ms
54,128 KB
testcase_11 AC 127 ms
54,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Con564 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int H = s.nextInt() , N = s.nextInt();
		int count = 1;
		for(int i = 0;i < N-1;i++){
			int h = s.nextInt();
			if(h > H){
				count++;
			}
		}
		s.close();
		String rank = count + "th";
		switch(count % 10){
		case 1:rank = count +"st";
		break;
		case 2:rank = count + "nd";
		break;
		case 3:rank = count + "rd";
		break;
		}
		System.out.println(rank);

	}

}
0