結果

問題 No.395 永遠の17歳
ユーザー iwotiwot
提出日時 2020-06-21 00:33:18
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 84 bytes
コンパイル時間 4,424 ms
コンパイル使用メモリ 156,584 KB
実行使用メモリ 24,808 KB
最終ジャッジ日時 2023-09-16 17:54:46
合計ジャッジ時間 6,792 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
20,740 KB
testcase_01 AC 81 ms
22,792 KB
testcase_02 AC 80 ms
22,748 KB
testcase_03 AC 81 ms
24,748 KB
testcase_04 AC 79 ms
22,652 KB
testcase_05 AC 80 ms
22,768 KB
testcase_06 WA -
testcase_07 AC 79 ms
24,804 KB
testcase_08 AC 79 ms
20,692 KB
testcase_09 WA -
testcase_10 AC 81 ms
24,736 KB
testcase_11 AC 79 ms
22,852 KB
testcase_12 AC 80 ms
24,728 KB
testcase_13 AC 80 ms
22,728 KB
testcase_14 AC 81 ms
24,800 KB
testcase_15 AC 80 ms
22,768 KB
testcase_16 AC 80 ms
22,812 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 < 9 then -1 else A - 7
0