結果

問題 No.169 何分かかるの!?
ユーザー chike_pluschike_plus
提出日時 2019-03-27 09:18:36
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 6,569 ms
コンパイル使用メモリ 184,540 KB
実行使用メモリ 30,208 KB
最終ジャッジ日時 2024-04-19 09:27:31
合計ジャッジ時間 9,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 67 ms
29,824 KB
testcase_02 AC 67 ms
30,080 KB
testcase_03 AC 67 ms
30,080 KB
testcase_04 AC 67 ms
30,080 KB
testcase_05 AC 67 ms
30,080 KB
testcase_06 AC 68 ms
30,200 KB
testcase_07 AC 67 ms
29,952 KB
testcase_08 AC 66 ms
29,952 KB
testcase_09 AC 66 ms
30,080 KB
testcase_10 AC 66 ms
29,824 KB
testcase_11 AC 66 ms
30,208 KB
testcase_12 AC 66 ms
30,080 KB
testcase_13 AC 67 ms
30,080 KB
testcase_14 AC 67 ms
30,208 KB
testcase_15 AC 66 ms
29,696 KB
testcase_16 AC 67 ms
30,208 KB
testcase_17 AC 66 ms
29,952 KB
testcase_18 AC 66 ms
29,696 KB
testcase_19 AC 66 ms
29,952 KB
testcase_20 AC 65 ms
29,952 KB
testcase_21 AC 67 ms
29,824 KB
testcase_22 AC 66 ms
29,680 KB
testcase_23 AC 67 ms
29,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (227 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 ``No.169 何分かかるの!?``() =

  let k = stdin.ReadLine() |> float
  let s = stdin.ReadLine() |> float

  s * (100. / (100.-k))
  |> System.Math.Truncate
  |> stdout.WriteLine

``No.169 何分かかるの!?``()
0