結果

問題 No.378 名声値を稼ごう
ユーザー nobigomunobigomu
提出日時 2018-06-03 23:47:04
言語 F#
(F# 4.0)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 6,830 ms
コンパイル使用メモリ 185,816 KB
実行使用メモリ 34,752 KB
最終ジャッジ日時 2024-06-30 09:29:38
合計ジャッジ時間 9,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
34,620 KB
testcase_01 AC 328 ms
34,616 KB
testcase_02 AC 330 ms
34,748 KB
testcase_03 AC 328 ms
34,368 KB
testcase_04 AC 325 ms
34,752 KB
testcase_05 AC 330 ms
33,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (246 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 f a = a/2L
let g a = (2L*(f a)+a)
let rec h a b c = if a<>0L then h (f a) (b + (f a)) (max c (g a)) else abs (c-b)
(stdin.ReadLine >> int64 >> fun n -> h n n (2L*n)) () |> printfn "%d"
0