結果

問題 No.388 階段 (1)
ユーザー Michae'GonMichae'Gon
提出日時 2017-02-28 22:20:03
言語 F#
(F# 4.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 6,897 ms
コンパイル使用メモリ 158,984 KB
実行使用メモリ 24,116 KB
最終ジャッジ日時 2023-09-02 18:06:01
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
24,116 KB
testcase_01 AC 59 ms
22,056 KB
testcase_02 AC 59 ms
24,016 KB
testcase_03 AC 60 ms
24,104 KB
testcase_04 AC 59 ms
24,112 KB
testcase_05 AC 60 ms
21,992 KB
testcase_06 AC 59 ms
22,060 KB
testcase_07 AC 59 ms
24,108 KB
testcase_08 AC 57 ms
20,028 KB
testcase_09 AC 59 ms
20,096 KB
testcase_10 AC 59 ms
22,116 KB
testcase_11 AC 59 ms
22,128 KB
testcase_12 AC 58 ms
22,008 KB
testcase_13 AC 58 ms
22,084 KB
testcase_14 AC 58 ms
22,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

module Main
open System

let sf = Console.ReadLine().Split(' ')
        |> Array.map int

Console.WriteLine(
    sf.[0] / sf.[1] + 1
)
0