結果

問題 No.350 d=vt
ユーザー ichibanshiboriichibanshibori
提出日時 2016-05-14 22:51:21
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 9,533 ms
コンパイル使用メモリ 187,128 KB
実行使用メモリ 34,984 KB
最終ジャッジ日時 2024-10-05 04:50:32
合計ジャッジ時間 15,248 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
34,172 KB
testcase_01 AC 307 ms
34,032 KB
testcase_02 AC 309 ms
34,040 KB
testcase_03 AC 304 ms
34,304 KB
testcase_04 AC 304 ms
34,292 KB
testcase_05 WA -
testcase_06 AC 323 ms
34,856 KB
testcase_07 AC 331 ms
34,632 KB
testcase_08 AC 332 ms
34,296 KB
testcase_09 AC 331 ms
34,276 KB
testcase_10 AC 332 ms
34,856 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (260 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 #

let V, T = stdin.ReadLine () |> (fun l -> l.Split ()) |> (fun arr -> (float arr.[0], float arr.[1]))
V * T |> floor |> int |> printfn "%d"
0