結果

問題 No.477 MVP
ユーザー hum_ophum_op
提出日時 2017-02-04 22:14:27
言語 F#
(F# 4.0)
結果
AC  
実行時間 354 ms / 1,000 ms
コード長 190 bytes
コンパイル時間 18,670 ms
コンパイル使用メモリ 192,580 KB
実行使用メモリ 35,972 KB
最終ジャッジ日時 2024-12-24 06:24:25
合計ジャッジ時間 14,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
35,620 KB
testcase_01 AC 351 ms
35,464 KB
testcase_02 AC 347 ms
35,460 KB
testcase_03 AC 350 ms
35,836 KB
testcase_04 AC 352 ms
35,752 KB
testcase_05 AC 349 ms
35,720 KB
testcase_06 AC 354 ms
35,972 KB
testcase_07 AC 348 ms
35,596 KB
testcase_08 AC 347 ms
35,628 KB
testcase_09 AC 350 ms
35,716 KB
testcase_10 AC 346 ms
35,840 KB
testcase_11 AC 349 ms
35,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (439 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 #

open System

let No477 () =
    let IN = Console.ReadLine().Split(' ')
    let N = Int64.Parse IN.[0]
    let K = Int64.Parse IN.[1]

    printfn "%d" <| N / (K + 1L) + 1L


    ()

No477 ()
0