結果

問題 No.835 ジュース
ユーザー nohopennohopen
提出日時 2019-06-25 21:42:09
言語 F#
(F# 4.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 89 bytes
コンパイル時間 5,203 ms
コンパイル使用メモリ 160,776 KB
実行使用メモリ 24,756 KB
最終ジャッジ日時 2023-09-05 12:46:37
合計ジャッジ時間 6,642 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
20,712 KB
testcase_01 AC 81 ms
22,952 KB
testcase_02 AC 81 ms
20,852 KB
testcase_03 AC 82 ms
24,756 KB
testcase_04 AC 81 ms
22,860 KB
testcase_05 AC 82 ms
22,768 KB
testcase_06 AC 80 ms
22,956 KB
testcase_07 AC 81 ms
22,804 KB
testcase_08 AC 81 ms
20,712 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 N = Console.ReadLine() |> double
(N*1.5) |> floor |> int |> printfn "%d"
0