結果

問題 No.779 Heisei
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-12 18:50:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 416 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 54,424 KB
最終ジャッジ日時 2024-09-13 09:44:48
合計ジャッジ時間 5,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,108 KB
testcase_01 AC 128 ms
54,064 KB
testcase_02 AC 115 ms
52,612 KB
testcase_03 WA -
testcase_04 AC 127 ms
54,260 KB
testcase_05 WA -
testcase_06 AC 128 ms
53,976 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 129 ms
53,856 KB
testcase_10 AC 128 ms
54,172 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 125 ms
54,012 KB
testcase_14 AC 129 ms
53,784 KB
testcase_15 AC 132 ms
54,168 KB
testcase_16 AC 129 ms
53,916 KB
testcase_17 AC 129 ms
53,772 KB
testcase_18 WA -
testcase_19 AC 130 ms
54,092 KB
testcase_20 AC 129 ms
54,132 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		int[] start = {1989, 1, 8};
		int[] end = {2019, 4, 30};
		int[] now = {sc.nextInt(), sc.nextInt(), sc.nextInt()};
		
		boolean F = false;
		for (int i=0; i<3; i++) {
			if (start[i]<now[i] && now[i]<end[i]) {
				F = true; break;
			}
		}
		
		System.out.println(F?"Yes":"No");
		
	}
}
0