結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー ryubokuryuboku
提出日時 2017-06-23 23:37:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 1,884 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-10-03 03:47:59
合計ジャッジ時間 8,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,204 KB
testcase_01 AC 117 ms
41,556 KB
testcase_02 AC 113 ms
40,808 KB
testcase_03 AC 110 ms
40,428 KB
testcase_04 AC 106 ms
40,100 KB
testcase_05 AC 121 ms
41,380 KB
testcase_06 AC 108 ms
40,164 KB
testcase_07 AC 116 ms
41,040 KB
testcase_08 AC 116 ms
41,416 KB
testcase_09 AC 103 ms
40,212 KB
testcase_10 AC 116 ms
41,176 KB
testcase_11 AC 115 ms
41,208 KB
testcase_12 AC 114 ms
41,568 KB
testcase_13 AC 102 ms
40,352 KB
testcase_14 AC 117 ms
41,460 KB
testcase_15 AC 115 ms
41,348 KB
testcase_16 AC 120 ms
41,588 KB
testcase_17 AC 105 ms
40,352 KB
testcase_18 AC 117 ms
41,280 KB
testcase_19 AC 106 ms
40,164 KB
testcase_20 AC 116 ms
40,864 KB
testcase_21 AC 113 ms
41,824 KB
testcase_22 AC 123 ms
41,504 KB
testcase_23 AC 104 ms
40,300 KB
testcase_24 AC 114 ms
41,592 KB
testcase_25 AC 118 ms
41,440 KB
testcase_26 AC 117 ms
41,304 KB
testcase_27 AC 120 ms
41,476 KB
testcase_28 AC 121 ms
41,236 KB
testcase_29 AC 104 ms
40,012 KB
testcase_30 AC 113 ms
41,288 KB
testcase_31 AC 103 ms
40,108 KB
testcase_32 AC 115 ms
41,104 KB
testcase_33 AC 119 ms
40,944 KB
testcase_34 AC 111 ms
40,288 KB
testcase_35 AC 124 ms
41,188 KB
testcase_36 AC 118 ms
41,256 KB
testcase_37 AC 124 ms
41,308 KB
testcase_38 AC 119 ms
41,280 KB
testcase_39 AC 120 ms
41,492 KB
testcase_40 AC 114 ms
41,364 KB
testcase_41 AC 108 ms
40,448 KB
testcase_42 AC 118 ms
41,364 KB
testcase_43 AC 107 ms
40,388 KB
testcase_44 AC 124 ms
41,376 KB
testcase_45 AC 124 ms
41,740 KB
testcase_46 AC 120 ms
41,556 KB
testcase_47 AC 110 ms
40,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.PrintWriter;

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