結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー kazapyon27kazapyon27
提出日時 2017-06-25 16:17:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 3,509 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 50,344 KB
最終ジャッジ日時 2024-10-04 08:48:51
合計ジャッジ時間 6,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,312 KB
testcase_01 AC 54 ms
49,980 KB
testcase_02 AC 54 ms
50,208 KB
testcase_03 AC 52 ms
50,036 KB
testcase_04 AC 53 ms
49,888 KB
testcase_05 AC 54 ms
49,572 KB
testcase_06 AC 52 ms
50,104 KB
testcase_07 AC 55 ms
50,036 KB
testcase_08 AC 54 ms
49,912 KB
testcase_09 AC 53 ms
49,972 KB
testcase_10 AC 53 ms
50,344 KB
testcase_11 AC 53 ms
50,084 KB
testcase_12 AC 53 ms
50,120 KB
testcase_13 AC 53 ms
50,156 KB
testcase_14 AC 53 ms
49,996 KB
testcase_15 AC 54 ms
50,220 KB
testcase_16 AC 52 ms
50,056 KB
testcase_17 AC 53 ms
50,032 KB
testcase_18 AC 53 ms
49,892 KB
testcase_19 AC 53 ms
49,904 KB
testcase_20 AC 52 ms
50,040 KB
testcase_21 AC 53 ms
50,124 KB
testcase_22 AC 54 ms
50,088 KB
testcase_23 AC 52 ms
50,100 KB
testcase_24 AC 52 ms
49,748 KB
testcase_25 AC 53 ms
49,844 KB
testcase_26 AC 53 ms
49,952 KB
testcase_27 AC 53 ms
50,228 KB
testcase_28 AC 55 ms
49,576 KB
testcase_29 AC 55 ms
49,956 KB
testcase_30 AC 54 ms
50,024 KB
testcase_31 AC 53 ms
49,712 KB
testcase_32 AC 52 ms
49,836 KB
testcase_33 AC 53 ms
49,984 KB
testcase_34 AC 54 ms
50,216 KB
testcase_35 AC 54 ms
50,132 KB
testcase_36 AC 56 ms
49,832 KB
testcase_37 AC 53 ms
50,176 KB
testcase_38 AC 52 ms
49,980 KB
testcase_39 AC 54 ms
49,960 KB
testcase_40 AC 54 ms
49,928 KB
testcase_41 AC 53 ms
49,880 KB
testcase_42 AC 53 ms
49,988 KB
testcase_43 AC 55 ms
49,972 KB
testcase_44 AC 55 ms
49,876 KB
testcase_45 AC 53 ms
50,172 KB
testcase_46 AC 52 ms
49,628 KB
testcase_47 AC 52 ms
50,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.530 年齢って毎年変わるし覚えるの難しいよね*/
import java.io.*;
public class No530 {
	public static void main(String[] args) {
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			System.out.println(2017-Short.parseShort(input.readLine()));
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0