結果

問題 No.350 d=vt
ユーザー taktak
提出日時 2018-04-14 17:22:06
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 9,094 ms
コンパイル使用メモリ 189,064 KB
実行使用メモリ 36,708 KB
最終ジャッジ日時 2024-06-26 22:22:44
合計ジャッジ時間 12,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
34,204 KB
testcase_01 WA -
testcase_02 AC 340 ms
34,792 KB
testcase_03 AC 341 ms
34,664 KB
testcase_04 AC 340 ms
34,724 KB
testcase_05 WA -
testcase_06 AC 339 ms
34,792 KB
testcase_07 AC 339 ms
34,608 KB
testcase_08 AC 341 ms
34,768 KB
testcase_09 AC 339 ms
34,600 KB
testcase_10 AC 341 ms
34,736 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 339 ms
34,728 KB
testcase_14 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (254 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 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