結果

問題 No.350 d=vt
ユーザー taktak
提出日時 2018-04-14 17:25:21
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 105 bytes
コンパイル時間 3,710 ms
コンパイル使用メモリ 157,848 KB
実行使用メモリ 25,096 KB
最終ジャッジ日時 2023-09-09 05:18:41
合計ジャッジ時間 5,840 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
22,924 KB
testcase_01 AC 87 ms
22,864 KB
testcase_02 WA -
testcase_03 AC 87 ms
23,036 KB
testcase_04 WA -
testcase_05 AC 88 ms
22,856 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 87 ms
23,040 KB
testcase_11 AC 86 ms
22,964 KB
testcase_12 AC 87 ms
24,952 KB
testcase_13 AC 87 ms
23,060 KB
testcase_14 AC 87 ms
23,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let v,t = let tmp = stdin.ReadLine().Split() |> Array.map(decimal) in tmp.[0],tmp.[1]
v*t |> printfn "%f"
0