結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー YOSHIYOSHI
提出日時 2021-03-18 22:09:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 3,180 ms
コンパイル使用メモリ 72,832 KB
実行使用メモリ 36,984 KB
最終ジャッジ日時 2024-11-17 04:21:08
合計ジャッジ時間 7,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,768 KB
testcase_01 AC 52 ms
36,588 KB
testcase_02 AC 53 ms
36,788 KB
testcase_03 AC 52 ms
36,840 KB
testcase_04 AC 53 ms
36,336 KB
testcase_05 AC 51 ms
36,460 KB
testcase_06 AC 51 ms
36,940 KB
testcase_07 AC 51 ms
36,896 KB
testcase_08 AC 53 ms
36,432 KB
testcase_09 AC 55 ms
36,836 KB
testcase_10 AC 52 ms
36,576 KB
testcase_11 AC 52 ms
36,916 KB
testcase_12 AC 50 ms
36,336 KB
testcase_13 AC 51 ms
36,296 KB
testcase_14 AC 53 ms
36,920 KB
testcase_15 AC 51 ms
36,460 KB
testcase_16 AC 51 ms
36,984 KB
testcase_17 AC 51 ms
36,684 KB
testcase_18 AC 51 ms
36,652 KB
testcase_19 AC 51 ms
36,864 KB
testcase_20 AC 52 ms
36,544 KB
testcase_21 AC 51 ms
36,828 KB
testcase_22 AC 52 ms
36,712 KB
testcase_23 AC 51 ms
36,556 KB
testcase_24 AC 52 ms
36,684 KB
testcase_25 AC 52 ms
36,660 KB
testcase_26 AC 51 ms
36,940 KB
testcase_27 AC 51 ms
36,416 KB
testcase_28 AC 50 ms
36,308 KB
testcase_29 AC 55 ms
36,428 KB
testcase_30 AC 51 ms
36,836 KB
testcase_31 AC 50 ms
36,924 KB
testcase_32 AC 51 ms
36,672 KB
testcase_33 AC 50 ms
36,856 KB
testcase_34 AC 52 ms
36,460 KB
testcase_35 AC 51 ms
36,856 KB
testcase_36 AC 51 ms
36,524 KB
testcase_37 AC 53 ms
36,432 KB
testcase_38 AC 52 ms
36,848 KB
testcase_39 AC 52 ms
36,768 KB
testcase_40 AC 51 ms
36,716 KB
testcase_41 AC 51 ms
36,840 KB
testcase_42 AC 51 ms
36,708 KB
testcase_43 AC 52 ms
36,756 KB
testcase_44 AC 52 ms
36,556 KB
testcase_45 AC 52 ms
36,716 KB
testcase_46 AC 52 ms
36,328 KB
testcase_47 AC 52 ms
36,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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