結果

問題 No.46 はじめのn歩
ユーザー chike_pluschike_plus
提出日時 2019-03-18 12:57:25
言語 F#
(F# 4.0)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 163 bytes
コンパイル時間 4,724 ms
コンパイル使用メモリ 155,252 KB
実行使用メモリ 24,220 KB
最終ジャッジ日時 2023-09-25 08:22:07
合計ジャッジ時間 6,226 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
22,140 KB
testcase_01 AC 61 ms
22,240 KB
testcase_02 AC 61 ms
24,120 KB
testcase_03 AC 60 ms
22,112 KB
testcase_04 AC 59 ms
22,136 KB
testcase_05 AC 60 ms
24,216 KB
testcase_06 AC 61 ms
24,124 KB
testcase_07 AC 61 ms
24,220 KB
testcase_08 AC 61 ms
22,252 KB
testcase_09 AC 61 ms
24,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let A , B = System.Console.ReadLine().Split(' ')
            |> fun x -> int x.[0] , int x.[1]

(B / A) +  if (B % A) > 0 then 1 else 0
|> System.Console.WriteLine
0