結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-29 01:47:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 4,946 ms
コンパイル使用メモリ 72,972 KB
実行使用メモリ 37,164 KB
最終ジャッジ日時 2024-11-22 04:33:29
合計ジャッジ時間 8,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,088 KB
testcase_01 AC 55 ms
36,568 KB
testcase_02 AC 55 ms
36,856 KB
testcase_03 AC 54 ms
36,968 KB
testcase_04 AC 54 ms
36,864 KB
testcase_05 AC 54 ms
36,980 KB
testcase_06 AC 54 ms
36,800 KB
testcase_07 AC 53 ms
37,004 KB
testcase_08 AC 53 ms
36,880 KB
testcase_09 AC 53 ms
36,832 KB
testcase_10 AC 55 ms
36,832 KB
testcase_11 AC 53 ms
36,888 KB
testcase_12 AC 55 ms
36,728 KB
testcase_13 AC 55 ms
37,096 KB
testcase_14 AC 55 ms
36,560 KB
testcase_15 AC 54 ms
36,868 KB
testcase_16 AC 54 ms
36,820 KB
testcase_17 AC 54 ms
36,896 KB
testcase_18 AC 53 ms
36,896 KB
testcase_19 AC 54 ms
37,036 KB
testcase_20 AC 54 ms
36,976 KB
testcase_21 AC 54 ms
36,892 KB
testcase_22 AC 53 ms
37,012 KB
testcase_23 AC 56 ms
36,924 KB
testcase_24 AC 55 ms
36,916 KB
testcase_25 AC 55 ms
36,964 KB
testcase_26 AC 55 ms
36,636 KB
testcase_27 AC 55 ms
37,056 KB
testcase_28 AC 54 ms
37,060 KB
testcase_29 AC 53 ms
36,936 KB
testcase_30 AC 53 ms
36,732 KB
testcase_31 AC 55 ms
36,976 KB
testcase_32 AC 53 ms
36,544 KB
testcase_33 AC 53 ms
37,004 KB
testcase_34 AC 54 ms
36,940 KB
testcase_35 AC 54 ms
36,780 KB
testcase_36 AC 53 ms
37,164 KB
testcase_37 AC 52 ms
36,696 KB
testcase_38 AC 54 ms
36,868 KB
testcase_39 AC 54 ms
37,048 KB
testcase_40 AC 54 ms
36,568 KB
testcase_41 AC 54 ms
36,724 KB
testcase_42 AC 53 ms
36,864 KB
testcase_43 AC 55 ms
36,952 KB
testcase_44 AC 54 ms
36,732 KB
testcase_45 AC 54 ms
36,956 KB
testcase_46 AC 54 ms
36,776 KB
testcase_47 AC 54 ms
36,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No530 {
	public static void main(String[] args) throws IOException{
		System.out.println(2017 - Integer.parseInt(new BufferedReader(new InputStreamReader(System.in)).readLine()));
	}
}
0