結果

問題 No.395 永遠の17歳
ユーザー iwotiwot
提出日時 2020-06-21 00:43:05
言語 F#
(F# 4.0)
結果
AC  
実行時間 82 ms / 1,000 ms
コード長 85 bytes
コンパイル時間 3,123 ms
コンパイル使用メモリ 156,340 KB
実行使用メモリ 24,908 KB
最終ジャッジ日時 2023-09-16 17:54:45
合計ジャッジ時間 5,384 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
20,736 KB
testcase_01 AC 80 ms
22,708 KB
testcase_02 AC 79 ms
24,796 KB
testcase_03 AC 79 ms
22,860 KB
testcase_04 AC 80 ms
22,864 KB
testcase_05 AC 79 ms
22,688 KB
testcase_06 AC 78 ms
22,800 KB
testcase_07 AC 80 ms
22,764 KB
testcase_08 AC 82 ms
24,908 KB
testcase_09 AC 80 ms
22,760 KB
testcase_10 AC 80 ms
22,868 KB
testcase_11 AC 79 ms
20,784 KB
testcase_12 AC 82 ms
22,872 KB
testcase_13 AC 80 ms
20,736 KB
testcase_14 AC 79 ms
22,864 KB
testcase_15 AC 80 ms
22,836 KB
testcase_16 AC 79 ms
24,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let A = stdin.ReadLine().Trim() |> int

printfn "%d" <| if A < 15 then -1 else A - 7
0