結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー yumechiyumechi
提出日時 2021-02-09 21:24:10
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 995 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 12,310 ms
コンパイル使用メモリ 262,208 KB
実行使用メモリ 65,104 KB
最終ジャッジ日時 2024-07-07 03:26:13
合計ジャッジ時間 62,485 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
64,924 KB
testcase_01 AC 984 ms
64,968 KB
testcase_02 AC 971 ms
65,012 KB
testcase_03 AC 969 ms
64,620 KB
testcase_04 AC 960 ms
64,804 KB
testcase_05 AC 973 ms
64,996 KB
testcase_06 AC 967 ms
64,644 KB
testcase_07 AC 972 ms
64,868 KB
testcase_08 AC 985 ms
64,776 KB
testcase_09 AC 987 ms
64,940 KB
testcase_10 AC 977 ms
65,000 KB
testcase_11 AC 972 ms
64,824 KB
testcase_12 AC 968 ms
64,924 KB
testcase_13 AC 974 ms
64,964 KB
testcase_14 AC 974 ms
64,932 KB
testcase_15 AC 975 ms
64,660 KB
testcase_16 AC 982 ms
64,676 KB
testcase_17 AC 966 ms
64,876 KB
testcase_18 AC 974 ms
64,936 KB
testcase_19 AC 968 ms
64,976 KB
testcase_20 AC 973 ms
65,076 KB
testcase_21 AC 981 ms
65,052 KB
testcase_22 AC 981 ms
64,796 KB
testcase_23 AC 985 ms
64,708 KB
testcase_24 AC 987 ms
64,888 KB
testcase_25 AC 993 ms
64,912 KB
testcase_26 AC 979 ms
64,840 KB
testcase_27 AC 976 ms
64,652 KB
testcase_28 AC 977 ms
64,928 KB
testcase_29 AC 971 ms
65,016 KB
testcase_30 AC 977 ms
64,980 KB
testcase_31 AC 986 ms
64,792 KB
testcase_32 AC 975 ms
64,892 KB
testcase_33 AC 995 ms
64,928 KB
testcase_34 AC 979 ms
64,896 KB
testcase_35 AC 981 ms
64,932 KB
testcase_36 AC 988 ms
65,020 KB
testcase_37 AC 982 ms
64,784 KB
testcase_38 AC 984 ms
64,972 KB
testcase_39 AC 986 ms
64,948 KB
testcase_40 AC 984 ms
64,764 KB
testcase_41 AC 987 ms
64,660 KB
testcase_42 AC 986 ms
65,104 KB
testcase_43 AC 974 ms
64,652 KB
testcase_44 AC 972 ms
64,996 KB
testcase_45 AC 980 ms
64,892 KB
testcase_46 AC 989 ms
64,784 KB
testcase_47 AC 968 ms
64,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val i = sc.nextInt
  println(2017 - i)
}
0