結果

問題 No.564 背の順
ユーザー Hdz06052373Hdz06052373
提出日時 2017-09-10 00:45:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 769 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 79,552 KB
実行使用メモリ 41,876 KB
最終ジャッジ日時 2024-11-07 10:21:57
合計ジャッジ時間 4,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
41,584 KB
testcase_01 AC 156 ms
41,720 KB
testcase_02 AC 156 ms
41,648 KB
testcase_03 WA -
testcase_04 AC 147 ms
41,460 KB
testcase_05 AC 157 ms
41,588 KB
testcase_06 AC 157 ms
41,816 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 148 ms
41,772 KB
testcase_10 AC 148 ms
41,716 KB
testcase_11 AC 148 ms
41,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int[] h = new int[100];
		int n = 2; 
		int tmp;
		
		for(int i = 0; i < n; i++){
			h[i] = sc.nextInt();
			if(i == 0){
				n = sc.nextInt();
			}
		}
		int mr = h[0];
		for(int j = 0; j < n; j++){
			for(int k = j; k < n; k++){
				if(h[k] < h[j]){
					tmp = h[k];
					h[k] = h[j];
					h[j] = tmp;
				}
			}
		}
		int o = 0;
		for(int l = 0; l < n; l++){
			if(h[l] == mr){
				o = l;
				break;
			}
		}
		int num = n - o;
		if(num == 1){
			System.out.println(num + "st");
		}else if(num == 2){
			System.out.println(num + "nd");
		}else if(num == 3){
			System.out.println(num + "rd");
		}else{
			System.out.println(num + "th");
		}
	}
}
0