結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー 54km54km
提出日時 2020-03-17 20:00:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-11-30 22:52:07
合計ジャッジ時間 9,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,272 KB
testcase_01 AC 123 ms
41,148 KB
testcase_02 AC 123 ms
41,340 KB
testcase_03 AC 122 ms
41,440 KB
testcase_04 AC 126 ms
41,312 KB
testcase_05 AC 122 ms
41,456 KB
testcase_06 AC 123 ms
41,132 KB
testcase_07 AC 120 ms
41,544 KB
testcase_08 AC 125 ms
41,256 KB
testcase_09 AC 133 ms
41,552 KB
testcase_10 AC 133 ms
41,564 KB
testcase_11 AC 121 ms
41,204 KB
testcase_12 AC 109 ms
41,432 KB
testcase_13 AC 129 ms
41,492 KB
testcase_14 AC 120 ms
41,536 KB
testcase_15 AC 122 ms
41,228 KB
testcase_16 AC 110 ms
41,532 KB
testcase_17 AC 123 ms
41,132 KB
testcase_18 AC 127 ms
41,196 KB
testcase_19 AC 123 ms
41,272 KB
testcase_20 AC 125 ms
41,104 KB
testcase_21 AC 127 ms
41,156 KB
testcase_22 AC 124 ms
41,408 KB
testcase_23 AC 121 ms
40,108 KB
testcase_24 AC 116 ms
41,188 KB
testcase_25 AC 118 ms
41,516 KB
testcase_26 AC 122 ms
40,064 KB
testcase_27 AC 133 ms
41,360 KB
testcase_28 AC 114 ms
41,496 KB
testcase_29 AC 129 ms
41,068 KB
testcase_30 AC 126 ms
41,280 KB
testcase_31 AC 135 ms
41,188 KB
testcase_32 AC 128 ms
41,360 KB
testcase_33 AC 128 ms
41,440 KB
testcase_34 AC 131 ms
41,368 KB
testcase_35 AC 107 ms
41,448 KB
testcase_36 AC 138 ms
41,268 KB
testcase_37 AC 123 ms
40,012 KB
testcase_38 AC 118 ms
41,356 KB
testcase_39 AC 113 ms
41,336 KB
testcase_40 AC 121 ms
41,320 KB
testcase_41 AC 123 ms
41,444 KB
testcase_42 AC 127 ms
41,356 KB
testcase_43 AC 125 ms
41,304 KB
testcase_44 AC 114 ms
41,192 KB
testcase_45 AC 136 ms
41,348 KB
testcase_46 AC 126 ms
41,316 KB
testcase_47 AC 122 ms
41,328 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