結果

問題 No.477 MVP
ユーザー pekempeypekempey
提出日時 2017-01-27 22:25:08
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 135 bytes
コンパイル時間 3,571 ms
コンパイル使用メモリ 159,820 KB
実行使用メモリ 24,164 KB
最終ジャッジ日時 2023-08-25 03:54:20
合計ジャッジ時間 5,330 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
22,224 KB
testcase_01 AC 60 ms
22,228 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 59 ms
24,164 KB
testcase_05 WA -
testcase_06 AC 59 ms
22,048 KB
testcase_07 AC 60 ms
22,100 KB
testcase_08 AC 58 ms
22,036 KB
testcase_09 AC 60 ms
22,064 KB
testcase_10 AC 60 ms
22,224 KB
testcase_11 AC 59 ms
22,192 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, K = Console.ReadLine().Split() |> Array.map int64 |> fun a -> a.[0], a.[1]

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

0