結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー megane_ankomegane_anko
提出日時 2021-02-16 16:08:22
言語 TypeScript
(5.4.3)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 8,693 ms
コンパイル使用メモリ 253,180 KB
実行使用メモリ 44,196 KB
最終ジャッジ日時 2023-10-11 04:19:06
合計ジャッジ時間 13,479 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
42,232 KB
testcase_01 AC 77 ms
42,412 KB
testcase_02 AC 78 ms
42,112 KB
testcase_03 AC 76 ms
42,228 KB
testcase_04 AC 78 ms
42,244 KB
testcase_05 AC 79 ms
42,096 KB
testcase_06 AC 78 ms
42,292 KB
testcase_07 AC 79 ms
42,236 KB
testcase_08 AC 78 ms
42,340 KB
testcase_09 AC 78 ms
42,208 KB
testcase_10 AC 80 ms
42,156 KB
testcase_11 AC 79 ms
42,364 KB
testcase_12 AC 79 ms
42,236 KB
testcase_13 AC 79 ms
42,228 KB
testcase_14 AC 79 ms
42,340 KB
testcase_15 AC 77 ms
42,284 KB
testcase_16 AC 77 ms
42,104 KB
testcase_17 AC 76 ms
42,156 KB
testcase_18 AC 77 ms
42,156 KB
testcase_19 AC 78 ms
42,220 KB
testcase_20 AC 78 ms
42,316 KB
testcase_21 AC 77 ms
42,240 KB
testcase_22 AC 78 ms
42,124 KB
testcase_23 AC 78 ms
42,420 KB
testcase_24 AC 79 ms
42,296 KB
testcase_25 AC 79 ms
42,112 KB
testcase_26 AC 78 ms
42,236 KB
testcase_27 AC 78 ms
42,252 KB
testcase_28 AC 78 ms
44,196 KB
testcase_29 AC 78 ms
42,280 KB
testcase_30 AC 76 ms
42,240 KB
testcase_31 AC 77 ms
42,288 KB
testcase_32 AC 77 ms
42,368 KB
testcase_33 AC 77 ms
42,224 KB
testcase_34 AC 78 ms
42,192 KB
testcase_35 AC 81 ms
42,128 KB
testcase_36 AC 83 ms
42,232 KB
testcase_37 AC 82 ms
42,236 KB
testcase_38 AC 79 ms
42,236 KB
testcase_39 AC 79 ms
42,288 KB
testcase_40 AC 79 ms
42,332 KB
testcase_41 AC 79 ms
42,244 KB
testcase_42 AC 79 ms
42,096 KB
testcase_43 AC 78 ms
42,160 KB
testcase_44 AC 79 ms
42,100 KB
testcase_45 AC 79 ms
42,304 KB
testcase_46 AC 78 ms
42,364 KB
testcase_47 AC 77 ms
42,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import * as fs from 'fs';
const input = fs.readFileSync('/dev/stdin', 'utf8');

const Y = parseInt(input);
console.log(2017 - Y);
0