結果

問題 No.2945 Namiki Secondary School
ユーザー ks2mks2m
提出日時 2024-10-25 22:31:18
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 6,127 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-10-25 22:31:37
合計ジャッジ時間 10,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		if (n < 1984) {
			System.out.println("None");
		} else if (n < 2008) {
			System.out.println("Namiki High School");
		} else {
			System.out.println("Namiki Secondary School");
		}
	}
}
0