結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー samplelpmassamplelpmas
提出日時 2017-06-26 21:23:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 1,718 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-10-04 09:50:50
合計ジャッジ時間 8,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,468 KB
testcase_01 AC 101 ms
39,992 KB
testcase_02 AC 99 ms
40,416 KB
testcase_03 AC 99 ms
40,128 KB
testcase_04 AC 116 ms
41,160 KB
testcase_05 AC 99 ms
40,072 KB
testcase_06 AC 98 ms
39,984 KB
testcase_07 AC 97 ms
39,588 KB
testcase_08 AC 114 ms
41,032 KB
testcase_09 AC 111 ms
41,184 KB
testcase_10 AC 107 ms
41,284 KB
testcase_11 AC 107 ms
41,120 KB
testcase_12 AC 113 ms
41,100 KB
testcase_13 AC 108 ms
41,196 KB
testcase_14 AC 102 ms
39,992 KB
testcase_15 AC 109 ms
41,276 KB
testcase_16 AC 111 ms
41,532 KB
testcase_17 AC 100 ms
39,816 KB
testcase_18 AC 110 ms
41,064 KB
testcase_19 AC 97 ms
39,988 KB
testcase_20 AC 108 ms
41,020 KB
testcase_21 AC 100 ms
40,120 KB
testcase_22 AC 118 ms
41,080 KB
testcase_23 AC 100 ms
40,028 KB
testcase_24 AC 108 ms
41,228 KB
testcase_25 AC 100 ms
40,204 KB
testcase_26 AC 97 ms
39,792 KB
testcase_27 AC 106 ms
39,808 KB
testcase_28 AC 98 ms
39,804 KB
testcase_29 AC 115 ms
41,276 KB
testcase_30 AC 118 ms
41,272 KB
testcase_31 AC 98 ms
40,124 KB
testcase_32 AC 108 ms
40,940 KB
testcase_33 AC 94 ms
39,436 KB
testcase_34 AC 111 ms
41,180 KB
testcase_35 AC 107 ms
41,148 KB
testcase_36 AC 100 ms
40,124 KB
testcase_37 AC 99 ms
39,960 KB
testcase_38 AC 109 ms
41,364 KB
testcase_39 AC 111 ms
40,840 KB
testcase_40 AC 115 ms
41,148 KB
testcase_41 AC 111 ms
41,484 KB
testcase_42 AC 112 ms
41,324 KB
testcase_43 AC 112 ms
41,416 KB
testcase_44 AC 99 ms
39,960 KB
testcase_45 AC 101 ms
39,816 KB
testcase_46 AC 102 ms
40,512 KB
testcase_47 AC 105 ms
40,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int BIRTH_YEAR = sc.nextInt();

        System.out.println(2017 - BIRTH_YEAR);

    }

}
0