結果

問題 No.350 d=vt
ユーザー taktak
提出日時 2018-04-14 17:22:06
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 4,302 ms
コンパイル使用メモリ 152,048 KB
実行使用メモリ 24,988 KB
最終ジャッジ日時 2023-09-09 05:17:07
合計ジャッジ時間 6,342 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
22,804 KB
testcase_01 WA -
testcase_02 AC 84 ms
24,764 KB
testcase_03 AC 85 ms
22,772 KB
testcase_04 AC 84 ms
22,728 KB
testcase_05 WA -
testcase_06 AC 84 ms
22,760 KB
testcase_07 AC 85 ms
22,852 KB
testcase_08 AC 84 ms
24,692 KB
testcase_09 AC 84 ms
24,804 KB
testcase_10 AC 85 ms
22,812 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 83 ms
22,892 KB
testcase_14 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

let tRange = 10000.0

let v,t = 
    let tmp = stdin.ReadLine().Split()
              |> Array.map(float)
    tmp.[0],tmp.[1]/tRange

v*t*tRange |> int |> printfn "%i"
0