結果

問題 No.564 背の順
ユーザー shinwisteriashinwisteria
提出日時 2018-02-15 23:06:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 4,400 ms
コンパイル使用メモリ 76,052 KB
実行使用メモリ 54,616 KB
最終ジャッジ日時 2024-06-09 11:34:20
合計ジャッジ時間 7,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
53,928 KB
testcase_01 AC 142 ms
53,996 KB
testcase_02 AC 158 ms
53,840 KB
testcase_03 WA -
testcase_04 AC 159 ms
53,948 KB
testcase_05 AC 152 ms
53,876 KB
testcase_06 AC 159 ms
54,140 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 149 ms
54,004 KB
testcase_10 AC 142 ms
54,488 KB
testcase_11 AC 143 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
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){
		case 1:rank = "1st";
		break;
		case 2:rank = "2nd";
		break;
		case 3:rank = "3rd";
		break;
		}
		System.out.println(rank);

	}

}
0