結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー OldBrid21501053OldBrid21501053
提出日時 2019-09-12 14:52:58
言語 F#
(F# 4.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 3,200 ms
コンパイル使用メモリ 159,624 KB
実行使用メモリ 25,040 KB
最終ジャッジ日時 2023-09-15 14:13:07
合計ジャッジ時間 9,324 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
22,864 KB
testcase_01 AC 83 ms
22,972 KB
testcase_02 AC 81 ms
22,884 KB
testcase_03 AC 81 ms
22,936 KB
testcase_04 AC 83 ms
22,852 KB
testcase_05 AC 83 ms
22,844 KB
testcase_06 AC 83 ms
24,892 KB
testcase_07 AC 83 ms
22,884 KB
testcase_08 AC 83 ms
24,800 KB
testcase_09 AC 83 ms
22,780 KB
testcase_10 AC 82 ms
22,964 KB
testcase_11 AC 81 ms
22,872 KB
testcase_12 AC 82 ms
22,784 KB
testcase_13 AC 83 ms
22,844 KB
testcase_14 AC 85 ms
22,872 KB
testcase_15 AC 83 ms
24,856 KB
testcase_16 AC 82 ms
22,840 KB
testcase_17 AC 83 ms
24,832 KB
testcase_18 AC 83 ms
24,896 KB
testcase_19 AC 82 ms
24,928 KB
testcase_20 AC 83 ms
22,916 KB
testcase_21 AC 81 ms
22,884 KB
testcase_22 AC 83 ms
22,808 KB
testcase_23 AC 83 ms
22,728 KB
testcase_24 AC 83 ms
22,908 KB
testcase_25 AC 82 ms
25,040 KB
testcase_26 AC 83 ms
22,964 KB
testcase_27 AC 83 ms
24,824 KB
testcase_28 AC 82 ms
20,920 KB
testcase_29 AC 82 ms
24,948 KB
testcase_30 AC 83 ms
24,884 KB
testcase_31 AC 82 ms
22,912 KB
testcase_32 AC 82 ms
22,876 KB
testcase_33 AC 83 ms
24,832 KB
testcase_34 AC 82 ms
24,916 KB
testcase_35 AC 81 ms
22,804 KB
testcase_36 AC 83 ms
22,848 KB
testcase_37 AC 82 ms
20,948 KB
testcase_38 AC 81 ms
20,748 KB
testcase_39 AC 82 ms
22,784 KB
testcase_40 AC 82 ms
22,884 KB
testcase_41 AC 81 ms
22,984 KB
testcase_42 AC 81 ms
22,736 KB
testcase_43 AC 82 ms
20,676 KB
testcase_44 AC 81 ms
22,884 KB
testcase_45 AC 82 ms
22,960 KB
testcase_46 AC 83 ms
22,792 KB
testcase_47 AC 81 ms
22,808 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

open System


let s : String array = Console.ReadLine().Split(' ')
let a : int = int(s.[0])
printfn "%i" (2017 - a)
0