結果

問題 No.388 階段 (1)
ユーザー nohopennohopen
提出日時 2019-06-16 19:34:30
言語 F#
(F# 4.0)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 13,939 ms
コンパイル使用メモリ 184,240 KB
実行使用メモリ 34,876 KB
最終ジャッジ日時 2024-05-03 13:25:41
合計ジャッジ時間 12,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
34,612 KB
testcase_01 AC 309 ms
34,744 KB
testcase_02 AC 301 ms
33,924 KB
testcase_03 AC 301 ms
34,064 KB
testcase_04 AC 299 ms
34,192 KB
testcase_05 AC 300 ms
34,364 KB
testcase_06 AC 295 ms
34,364 KB
testcase_07 AC 312 ms
34,220 KB
testcase_08 AC 306 ms
33,932 KB
testcase_09 AC 303 ms
34,452 KB
testcase_10 AC 303 ms
34,752 KB
testcase_11 AC 303 ms
34,488 KB
testcase_12 AC 302 ms
34,344 KB
testcase_13 AC 303 ms
34,876 KB
testcase_14 AC 304 ms
34,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (257 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 a = Console.ReadLine().Split(' ') |> Array.map int
if (a.[0] % a.[1]) = 0 then printfn "%d" ((a.[0] / a.[1]) + 1)
else printfn "%d" (int(Math.Ceiling((double)a.[0] / (double)a.[1])))
0