結果
問題 | No.46 はじめのn歩 |
ユーザー | chikeplus |
提出日時 | 2019-01-18 17:43:24 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 320 ms / 5,000 ms |
コード長 | 218 bytes |
コンパイル時間 | 12,887 ms |
コンパイル使用メモリ | 186,584 KB |
実行使用メモリ | 36,324 KB |
最終ジャッジ日時 | 2024-07-06 08:26:11 |
合計ジャッジ時間 | 13,558 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 311 ms
35,804 KB |
testcase_01 | AC | 310 ms
35,808 KB |
testcase_02 | AC | 305 ms
35,564 KB |
testcase_03 | AC | 319 ms
35,904 KB |
testcase_04 | AC | 320 ms
35,832 KB |
testcase_05 | AC | 312 ms
35,936 KB |
testcase_06 | AC | 313 ms
35,688 KB |
testcase_07 | AC | 311 ms
36,200 KB |
testcase_08 | AC | 317 ms
35,688 KB |
testcase_09 | AC | 312 ms
36,324 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (301 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/
ソースコード
open System let args = Console.ReadLine().Split( ' ' ) : String[] let a = float( args.GetValue(0).ToString() ) let b = float( args.GetValue(1).ToString() ) printfn "%d" (Int64.Parse( Math.Ceiling(b / a).ToString() ))