結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー rabirabi
提出日時 2019-06-24 12:12:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 3,272 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 37,160 KB
最終ジャッジ日時 2024-06-10 23:36:48
合計ジャッジ時間 6,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,512 KB
testcase_01 AC 43 ms
37,100 KB
testcase_02 AC 42 ms
36,524 KB
testcase_03 AC 44 ms
36,972 KB
testcase_04 AC 45 ms
36,992 KB
testcase_05 AC 49 ms
36,768 KB
testcase_06 AC 47 ms
37,160 KB
testcase_07 AC 44 ms
36,652 KB
testcase_08 AC 44 ms
36,524 KB
testcase_09 AC 46 ms
36,828 KB
testcase_10 AC 43 ms
36,848 KB
testcase_11 AC 44 ms
36,816 KB
testcase_12 AC 43 ms
36,784 KB
testcase_13 AC 43 ms
36,524 KB
testcase_14 AC 43 ms
37,040 KB
testcase_15 AC 43 ms
36,652 KB
testcase_16 AC 44 ms
36,888 KB
testcase_17 AC 44 ms
36,652 KB
testcase_18 AC 44 ms
36,784 KB
testcase_19 AC 46 ms
37,032 KB
testcase_20 AC 45 ms
36,660 KB
testcase_21 AC 43 ms
36,992 KB
testcase_22 AC 44 ms
37,064 KB
testcase_23 AC 44 ms
37,008 KB
testcase_24 AC 44 ms
36,948 KB
testcase_25 AC 43 ms
36,824 KB
testcase_26 AC 45 ms
36,932 KB
testcase_27 AC 44 ms
36,908 KB
testcase_28 AC 46 ms
36,500 KB
testcase_29 AC 45 ms
37,080 KB
testcase_30 AC 44 ms
36,528 KB
testcase_31 AC 45 ms
36,816 KB
testcase_32 AC 44 ms
36,960 KB
testcase_33 AC 44 ms
36,620 KB
testcase_34 AC 47 ms
36,832 KB
testcase_35 AC 45 ms
36,652 KB
testcase_36 AC 47 ms
36,768 KB
testcase_37 AC 45 ms
36,580 KB
testcase_38 AC 43 ms
36,816 KB
testcase_39 AC 45 ms
37,032 KB
testcase_40 AC 43 ms
37,032 KB
testcase_41 AC 45 ms
36,844 KB
testcase_42 AC 46 ms
36,844 KB
testcase_43 AC 45 ms
36,780 KB
testcase_44 AC 46 ms
36,972 KB
testcase_45 AC 44 ms
36,768 KB
testcase_46 AC 43 ms
36,872 KB
testcase_47 AC 43 ms
36,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class Tester2 {

	public static void main(String[] args) throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int y = Integer.parseInt(br.readLine());
		if(1970<=y && y<=2017)
			System.out.println(2017-y);
	}
}
0