結果

問題 No.395 永遠の17歳
ユーザー chike_pluschike_plus
提出日時 2019-04-02 11:33:10
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 15,867 ms
コンパイル使用メモリ 187,088 KB
実行使用メモリ 30,704 KB
最終ジャッジ日時 2024-05-06 19:06:16
合計ジャッジ時間 18,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
29,056 KB
testcase_01 AC 53 ms
30,464 KB
testcase_02 AC 53 ms
28,928 KB
testcase_03 AC 53 ms
29,184 KB
testcase_04 AC 55 ms
28,928 KB
testcase_05 AC 53 ms
30,704 KB
testcase_06 WA -
testcase_07 AC 55 ms
29,184 KB
testcase_08 AC 54 ms
29,184 KB
testcase_09 WA -
testcase_10 AC 53 ms
28,928 KB
testcase_11 AC 54 ms
29,056 KB
testcase_12 AC 53 ms
29,052 KB
testcase_13 AC 51 ms
28,928 KB
testcase_14 AC 52 ms
29,184 KB
testcase_15 AC 53 ms
29,056 KB
testcase_16 AC 52 ms
30,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (408 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let ``No.395 永遠の17歳``() =

  let a = stdin.ReadLine() |> int

  // X進表記

  match a with
  | a when a < 8 -> -1
  | _ -> a - 7
  |> stdout.WriteLine

  ()
``No.395 永遠の17歳``()
0