結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー aikon_marimoaikon_marimo
提出日時 2018-02-04 00:06:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 56,176 KB
最終ジャッジ日時 2024-06-22 04:07:39
合計ジャッジ時間 8,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,872 KB
testcase_01 AC 114 ms
54,124 KB
testcase_02 AC 117 ms
54,148 KB
testcase_03 AC 100 ms
52,720 KB
testcase_04 AC 108 ms
54,172 KB
testcase_05 AC 109 ms
54,060 KB
testcase_06 AC 96 ms
52,976 KB
testcase_07 AC 97 ms
52,720 KB
testcase_08 AC 109 ms
53,856 KB
testcase_09 AC 109 ms
53,836 KB
testcase_10 AC 98 ms
52,820 KB
testcase_11 AC 106 ms
54,008 KB
testcase_12 AC 111 ms
54,276 KB
testcase_13 AC 105 ms
53,748 KB
testcase_14 AC 113 ms
53,892 KB
testcase_15 AC 111 ms
53,976 KB
testcase_16 AC 112 ms
54,096 KB
testcase_17 AC 110 ms
53,900 KB
testcase_18 AC 100 ms
52,996 KB
testcase_19 AC 107 ms
54,020 KB
testcase_20 AC 95 ms
52,996 KB
testcase_21 AC 92 ms
52,616 KB
testcase_22 AC 108 ms
54,012 KB
testcase_23 AC 110 ms
54,120 KB
testcase_24 AC 111 ms
54,016 KB
testcase_25 AC 106 ms
54,100 KB
testcase_26 AC 118 ms
54,144 KB
testcase_27 AC 113 ms
53,868 KB
testcase_28 AC 111 ms
54,152 KB
testcase_29 AC 114 ms
54,068 KB
testcase_30 AC 108 ms
53,892 KB
testcase_31 AC 99 ms
52,720 KB
testcase_32 AC 110 ms
53,928 KB
testcase_33 AC 107 ms
53,604 KB
testcase_34 AC 97 ms
53,004 KB
testcase_35 AC 106 ms
54,248 KB
testcase_36 AC 110 ms
54,144 KB
testcase_37 AC 107 ms
54,136 KB
testcase_38 AC 110 ms
54,048 KB
testcase_39 AC 109 ms
53,780 KB
testcase_40 AC 108 ms
53,984 KB
testcase_41 AC 111 ms
56,176 KB
testcase_42 AC 121 ms
54,352 KB
testcase_43 AC 103 ms
53,464 KB
testcase_44 AC 96 ms
52,856 KB
testcase_45 AC 94 ms
52,732 KB
testcase_46 AC 108 ms
53,884 KB
testcase_47 AC 108 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		String ans = "";
		
		String S = in.next();
		
		int a = Integer.parseInt(S);
		
		
		System.out.println(2017-a);
	}
}
0