結果

問題 No.564 背の順
ユーザー GrenacheGrenache
提出日時 2017-09-08 22:23:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 3,875 ms
コンパイル使用メモリ 77,804 KB
実行使用メモリ 41,888 KB
最終ジャッジ日時 2024-11-07 12:01:26
合計ジャッジ時間 5,895 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,076 KB
testcase_01 AC 121 ms
40,616 KB
testcase_02 AC 141 ms
41,276 KB
testcase_03 AC 122 ms
40,768 KB
testcase_04 AC 128 ms
41,216 KB
testcase_05 AC 140 ms
41,464 KB
testcase_06 AC 139 ms
41,888 KB
testcase_07 AC 117 ms
40,228 KB
testcase_08 AC 141 ms
41,320 KB
testcase_09 AC 130 ms
41,300 KB
testcase_10 AC 117 ms
39,868 KB
testcase_11 AC 129 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder564 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int h = sc.nextInt();
		int n = sc.nextInt();

		int[] hh = new int[n - 1];
		int cnt = 1;
		for (int i = 0; i < n - 1; i++) {
			hh[i] = sc.nextInt();
			if (hh[i] > h) {
				cnt++;
			}
		}

		if (cnt % 10 == 1) {
			pr.printf("%dst\n", cnt);
		} else if (cnt % 10 == 2) {
			pr.printf("%dnd\n", cnt);
		} else if (cnt % 10 == 3) {
			pr.printf("%drd\n", cnt);
		} else {
			pr.printf("%dth\n", cnt);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0