結果
問題 | No.46 はじめのn歩 |
ユーザー | regerege |
提出日時 | 2015-09-03 23:15:46 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 318 ms / 5,000 ms |
コード長 | 149 bytes |
コンパイル時間 | 6,127 ms |
コンパイル使用メモリ | 184,736 KB |
実行使用メモリ | 34,616 KB |
最終ジャッジ日時 | 2024-07-18 23:38:46 |
合計ジャッジ時間 | 10,093 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 304 ms
34,596 KB |
testcase_01 | AC | 304 ms
34,064 KB |
testcase_02 | AC | 304 ms
33,800 KB |
testcase_03 | AC | 307 ms
33,676 KB |
testcase_04 | AC | 314 ms
33,800 KB |
testcase_05 | AC | 314 ms
33,968 KB |
testcase_06 | AC | 317 ms
34,616 KB |
testcase_07 | AC | 314 ms
33,800 KB |
testcase_08 | AC | 306 ms
33,908 KB |
testcase_09 | AC | 318 ms
33,936 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (208 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/
ソースコード
let args = stdin.ReadLine().Split(' ') let a = int args.[0] let b = int args.[1] printfn "%d" <| b / a + (if b % a = 0 then 0 else 1)