結果

問題 No.350 d=vt
ユーザー taktak
提出日時 2018-04-14 17:25:21
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 105 bytes
コンパイル時間 10,835 ms
コンパイル使用メモリ 187,036 KB
実行使用メモリ 35,156 KB
最終ジャッジ日時 2024-06-26 22:24:43
合計ジャッジ時間 14,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
35,004 KB
testcase_01 AC 337 ms
34,632 KB
testcase_02 WA -
testcase_03 AC 336 ms
34,760 KB
testcase_04 WA -
testcase_05 AC 338 ms
34,764 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 344 ms
34,768 KB
testcase_11 AC 339 ms
34,888 KB
testcase_12 AC 339 ms
34,340 KB
testcase_13 AC 337 ms
35,008 KB
testcase_14 AC 335 ms
34,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (281 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 = let tmp = stdin.ReadLine().Split() |> Array.map(decimal) in tmp.[0],tmp.[1]
v*t |> printfn "%f"
0