結果

問題 No.477 MVP
ユーザー pekempeypekempey
提出日時 2017-01-27 22:25:08
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 7,117 ms
コンパイル使用メモリ 186,404 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-06-06 04:36:45
合計ジャッジ時間 8,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
29,184 KB
testcase_01 AC 53 ms
29,184 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 49 ms
29,440 KB
testcase_05 WA -
testcase_06 AC 52 ms
29,312 KB
testcase_07 AC 51 ms
29,312 KB
testcase_08 AC 52 ms
29,160 KB
testcase_09 AC 50 ms
29,440 KB
testcase_10 AC 52 ms
29,312 KB
testcase_11 AC 54 ms
29,052 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (213 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 N, K = Console.ReadLine().Split() |> Array.map int64 |> fun a -> a.[0], a.[1]

Console.WriteLine((N + K) / (K + 1L))

0