結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 22:13:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 73,596 KB
実行使用メモリ 41,192 KB
最終ジャッジ日時 2024-06-23 01:55:55
合計ジャッジ時間 9,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,192 KB
testcase_01 AC 92 ms
39,476 KB
testcase_02 AC 104 ms
40,664 KB
testcase_03 AC 108 ms
41,176 KB
testcase_04 AC 116 ms
41,040 KB
testcase_05 AC 109 ms
40,800 KB
testcase_06 AC 109 ms
40,708 KB
testcase_07 AC 108 ms
40,824 KB
testcase_08 AC 102 ms
39,872 KB
testcase_09 AC 117 ms
40,840 KB
testcase_10 AC 116 ms
40,824 KB
testcase_11 AC 113 ms
41,084 KB
testcase_12 AC 114 ms
40,732 KB
testcase_13 AC 99 ms
40,148 KB
testcase_14 AC 113 ms
40,964 KB
testcase_15 AC 100 ms
40,012 KB
testcase_16 AC 100 ms
40,148 KB
testcase_17 AC 116 ms
41,140 KB
testcase_18 AC 108 ms
40,720 KB
testcase_19 AC 109 ms
40,640 KB
testcase_20 AC 102 ms
40,004 KB
testcase_21 AC 101 ms
39,984 KB
testcase_22 AC 101 ms
39,876 KB
testcase_23 AC 98 ms
39,676 KB
testcase_24 AC 103 ms
40,512 KB
testcase_25 AC 107 ms
41,024 KB
testcase_26 AC 104 ms
40,620 KB
testcase_27 AC 108 ms
40,724 KB
testcase_28 AC 111 ms
40,924 KB
testcase_29 AC 99 ms
39,692 KB
testcase_30 AC 101 ms
40,076 KB
testcase_31 AC 110 ms
40,992 KB
testcase_32 AC 106 ms
39,804 KB
testcase_33 AC 100 ms
39,732 KB
testcase_34 AC 108 ms
41,024 KB
testcase_35 AC 98 ms
39,600 KB
testcase_36 AC 113 ms
40,476 KB
testcase_37 AC 107 ms
39,724 KB
testcase_38 AC 99 ms
39,476 KB
testcase_39 AC 94 ms
39,896 KB
testcase_40 AC 111 ms
40,748 KB
testcase_41 AC 109 ms
40,744 KB
testcase_42 AC 107 ms
41,012 KB
testcase_43 AC 109 ms
40,732 KB
testcase_44 AC 99 ms
39,856 KB
testcase_45 AC 108 ms
40,992 KB
testcase_46 AC 115 ms
40,928 KB
testcase_47 AC 134 ms
40,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con530 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int y = s.nextInt();
		s.close();
		System.out.println(2017-y);
	}

}
0