結果

問題 No.56 消費税
ユーザー chike_pluschike_plus
提出日時 2019-03-19 09:56:58
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 10,200 ms
コンパイル使用メモリ 186,408 KB
実行使用メモリ 29,560 KB
最終ジャッジ日時 2024-09-13 12:55:54
合計ジャッジ時間 12,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
28,928 KB
testcase_01 AC 55 ms
29,184 KB
testcase_02 AC 56 ms
29,296 KB
testcase_03 WA -
testcase_04 AC 55 ms
28,800 KB
testcase_05 AC 56 ms
29,168 KB
testcase_06 AC 56 ms
29,176 KB
testcase_07 AC 56 ms
29,300 KB
testcase_08 AC 56 ms
29,056 KB
testcase_09 AC 55 ms
28,928 KB
testcase_10 AC 55 ms
29,056 KB
testcase_11 AC 55 ms
29,172 KB
testcase_12 AC 56 ms
28,928 KB
testcase_13 AC 55 ms
28,924 KB
testcase_14 AC 55 ms
29,056 KB
testcase_15 AC 55 ms
29,312 KB
testcase_16 AC 55 ms
29,560 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (244 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 #

open System

let D , P = Console.ReadLine().Split( ' ' )
            |> fun args -> args.[0] |> int , args.[1] |> int

float(D) * (1. + float(P)/100.)
|> int
|> Console.WriteLine 
0