結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー satumaimosatumaimo
提出日時 2017-07-07 17:32:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 3,865 ms
コンパイル使用メモリ 74,860 KB
実行使用メモリ 55,820 KB
最終ジャッジ日時 2024-10-06 10:01:18
合計ジャッジ時間 10,221 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,424 KB
testcase_01 AC 133 ms
54,216 KB
testcase_02 AC 138 ms
54,016 KB
testcase_03 AC 136 ms
54,224 KB
testcase_04 AC 136 ms
54,108 KB
testcase_05 AC 136 ms
53,964 KB
testcase_06 AC 136 ms
55,820 KB
testcase_07 AC 136 ms
54,124 KB
testcase_08 AC 137 ms
54,052 KB
testcase_09 AC 124 ms
52,944 KB
testcase_10 AC 137 ms
54,596 KB
testcase_11 AC 136 ms
54,168 KB
testcase_12 AC 137 ms
54,496 KB
testcase_13 AC 141 ms
54,072 KB
testcase_14 AC 135 ms
54,340 KB
testcase_15 AC 138 ms
54,004 KB
testcase_16 AC 136 ms
54,244 KB
testcase_17 AC 137 ms
54,428 KB
testcase_18 AC 136 ms
54,052 KB
testcase_19 AC 137 ms
54,104 KB
testcase_20 AC 139 ms
54,256 KB
testcase_21 AC 135 ms
54,116 KB
testcase_22 AC 137 ms
54,268 KB
testcase_23 AC 138 ms
54,168 KB
testcase_24 AC 137 ms
54,496 KB
testcase_25 AC 138 ms
54,396 KB
testcase_26 AC 137 ms
53,740 KB
testcase_27 AC 136 ms
54,400 KB
testcase_28 AC 138 ms
54,280 KB
testcase_29 AC 136 ms
53,764 KB
testcase_30 AC 136 ms
54,248 KB
testcase_31 AC 135 ms
54,232 KB
testcase_32 AC 135 ms
54,336 KB
testcase_33 AC 132 ms
54,008 KB
testcase_34 AC 135 ms
54,076 KB
testcase_35 AC 137 ms
53,996 KB
testcase_36 AC 135 ms
54,364 KB
testcase_37 AC 134 ms
54,096 KB
testcase_38 AC 135 ms
54,556 KB
testcase_39 AC 137 ms
54,376 KB
testcase_40 AC 137 ms
54,312 KB
testcase_41 AC 140 ms
54,368 KB
testcase_42 AC 135 ms
53,856 KB
testcase_43 AC 136 ms
53,928 KB
testcase_44 AC 135 ms
54,004 KB
testcase_45 AC 135 ms
54,072 KB
testcase_46 AC 135 ms
54,312 KB
testcase_47 AC 137 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Scanner;

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

public class Main {
    public static void main(String[] args) throws Exception {
        
        Scanner s = new Scanner(System.in);
        int a = s.nextInt();
        System.out.println(2017 - a);

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
    }
}
0