結果

問題 No.350 d=vt
ユーザー taktak
提出日時 2018-04-14 17:26:30
言語 F#
(F# 4.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 157,700 KB
実行使用メモリ 24,908 KB
最終ジャッジ日時 2023-09-09 05:18:52
合計ジャッジ時間 5,357 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
22,876 KB
testcase_01 AC 87 ms
22,820 KB
testcase_02 AC 86 ms
22,960 KB
testcase_03 AC 87 ms
22,768 KB
testcase_04 AC 90 ms
22,808 KB
testcase_05 AC 87 ms
24,896 KB
testcase_06 AC 87 ms
22,800 KB
testcase_07 AC 86 ms
22,948 KB
testcase_08 AC 87 ms
24,908 KB
testcase_09 AC 89 ms
24,780 KB
testcase_10 AC 85 ms
22,784 KB
testcase_11 AC 85 ms
22,760 KB
testcase_12 AC 87 ms
23,016 KB
testcase_13 AC 87 ms
22,860 KB
testcase_14 AC 87 ms
22,880 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 |> int |> printfn "%i"
0