結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー 54km54km
提出日時 2020-03-17 20:00:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 1,869 ms
コンパイル使用メモリ 71,172 KB
実行使用メモリ 56,428 KB
最終ジャッジ日時 2023-08-20 18:56:13
合計ジャッジ時間 9,995 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
55,852 KB
testcase_01 AC 99 ms
55,964 KB
testcase_02 AC 107 ms
55,836 KB
testcase_03 AC 101 ms
56,088 KB
testcase_04 AC 99 ms
56,160 KB
testcase_05 AC 100 ms
55,552 KB
testcase_06 AC 99 ms
55,612 KB
testcase_07 AC 99 ms
56,264 KB
testcase_08 AC 99 ms
56,120 KB
testcase_09 AC 99 ms
55,796 KB
testcase_10 AC 100 ms
56,248 KB
testcase_11 AC 100 ms
56,172 KB
testcase_12 AC 99 ms
56,200 KB
testcase_13 AC 98 ms
55,768 KB
testcase_14 AC 100 ms
56,428 KB
testcase_15 AC 99 ms
55,920 KB
testcase_16 AC 107 ms
55,920 KB
testcase_17 AC 106 ms
56,140 KB
testcase_18 AC 99 ms
55,596 KB
testcase_19 AC 99 ms
56,076 KB
testcase_20 AC 100 ms
56,024 KB
testcase_21 AC 97 ms
55,760 KB
testcase_22 AC 99 ms
55,896 KB
testcase_23 AC 99 ms
56,112 KB
testcase_24 AC 99 ms
55,536 KB
testcase_25 AC 98 ms
55,844 KB
testcase_26 AC 97 ms
55,776 KB
testcase_27 AC 98 ms
55,864 KB
testcase_28 AC 100 ms
55,988 KB
testcase_29 AC 100 ms
55,600 KB
testcase_30 AC 98 ms
55,844 KB
testcase_31 AC 100 ms
56,164 KB
testcase_32 AC 98 ms
55,676 KB
testcase_33 AC 99 ms
54,236 KB
testcase_34 AC 106 ms
55,744 KB
testcase_35 AC 100 ms
55,704 KB
testcase_36 AC 103 ms
56,248 KB
testcase_37 AC 98 ms
56,076 KB
testcase_38 AC 99 ms
56,156 KB
testcase_39 AC 99 ms
56,152 KB
testcase_40 AC 98 ms
56,132 KB
testcase_41 AC 99 ms
55,832 KB
testcase_42 AC 102 ms
55,960 KB
testcase_43 AC 99 ms
55,964 KB
testcase_44 AC 100 ms
55,460 KB
testcase_45 AC 98 ms
55,964 KB
testcase_46 AC 99 ms
56,120 KB
testcase_47 AC 101 ms
55,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
  public static void main(String[] args) {
    Scanner scan = new Scanner(System.in);
    int birthday = scan.nextInt();
    int nowtime = 2017;
    System.out.println(nowtime - birthday);
  }
}
0