結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
28,780 KB
testcase_01 AC 58 ms
30,316 KB
testcase_02 AC 57 ms
29,184 KB
testcase_03 AC 57 ms
28,780 KB
testcase_04 AC 56 ms
29,056 KB
testcase_05 AC 57 ms
30,316 KB
testcase_06 WA -
testcase_07 AC 58 ms
28,920 KB
testcase_08 AC 57 ms
29,044 KB
testcase_09 WA -
testcase_10 AC 58 ms
28,920 KB
testcase_11 AC 57 ms
29,184 KB
testcase_12 AC 57 ms
29,056 KB
testcase_13 AC 58 ms
29,052 KB
testcase_14 AC 57 ms
28,920 KB
testcase_15 AC 57 ms
28,928 KB
testcase_16 AC 59 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (449 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