結果

問題 No.564 背の順
ユーザー tetsutetsu
提出日時 2017-09-08 22:26:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 567 bytes
コンパイル時間 5,392 ms
コンパイル使用メモリ 86,276 KB
実行使用メモリ 42,024 KB
最終ジャッジ日時 2024-11-07 05:23:31
合計ジャッジ時間 6,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
41,400 KB
testcase_01 AC 138 ms
41,300 KB
testcase_02 AC 161 ms
41,964 KB
testcase_03 WA -
testcase_04 AC 150 ms
41,816 KB
testcase_05 AC 161 ms
42,024 KB
testcase_06 AC 149 ms
41,672 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 130 ms
41,168 KB
testcase_10 AC 148 ms
41,436 KB
testcase_11 AC 134 ms
41,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki173;

import java.util.Scanner;

public class A {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int H = sc.nextInt();
		int N = sc.nextInt();
		int rank = 1;
		for(int i=0; i<N-1; i++) {
			if(sc.nextInt() < H) {
				;
			} else {
				rank++;
			}
		}
		sc.close();
		if(rank == 1) {
			System.out.println("1st");
		} else if(rank == 2) {
			System.out.println("2nd");
		} else if(rank == 3) {
			System.out.println("3rd");
		} else {
			System.out.println(rank + "th");
		}
	}

}
0