結果

問題 No.350 d=vt
ユーザー taktak
提出日時 2018-04-14 17:23:22
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 5,014 ms
コンパイル使用メモリ 157,812 KB
実行使用メモリ 24,948 KB
最終ジャッジ日時 2023-09-09 05:17:58
合計ジャッジ時間 5,523 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
22,888 KB
testcase_01 AC 84 ms
22,688 KB
testcase_02 AC 85 ms
22,780 KB
testcase_03 AC 85 ms
22,652 KB
testcase_04 AC 86 ms
22,772 KB
testcase_05 WA -
testcase_06 AC 86 ms
22,748 KB
testcase_07 AC 86 ms
22,724 KB
testcase_08 AC 84 ms
22,776 KB
testcase_09 AC 85 ms
20,688 KB
testcase_10 AC 84 ms
20,640 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
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 hoge = 10000.0

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

v*t/hoge |> int |> printfn "%i"
0