結果

問題 No.56 消費税
ユーザー KEIT0KEIT0
提出日時 2017-12-05 22:23:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 4,735 ms
コンパイル使用メモリ 102,640 KB
実行使用メモリ 24,012 KB
最終ジャッジ日時 2023-08-19 04:18:30
合計ジャッジ時間 7,407 ms
ジャッジサーバーID
(参考情報)
judge9 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
23,868 KB
testcase_01 AC 71 ms
23,928 KB
testcase_02 AC 71 ms
24,012 KB
testcase_03 AC 70 ms
21,824 KB
testcase_04 AC 70 ms
21,956 KB
testcase_05 AC 71 ms
23,812 KB
testcase_06 AC 71 ms
23,868 KB
testcase_07 AC 69 ms
21,904 KB
testcase_08 AC 73 ms
23,916 KB
testcase_09 AC 70 ms
19,864 KB
testcase_10 AC 70 ms
21,768 KB
testcase_11 AC 69 ms
23,848 KB
testcase_12 AC 70 ms
23,976 KB
testcase_13 AC 71 ms
21,856 KB
testcase_14 AC 69 ms
21,820 KB
testcase_15 AC 70 ms
21,804 KB
testcase_16 AC 69 ms
23,888 KB
testcase_17 AC 68 ms
24,008 KB
testcase_18 AC 69 ms
21,824 KB
testcase_19 AC 69 ms
21,912 KB
testcase_20 AC 70 ms
23,948 KB
testcase_21 AC 69 ms
21,996 KB
testcase_22 AC 69 ms
22,016 KB
testcase_23 AC 69 ms
21,820 KB
testcase_24 AC 69 ms
23,936 KB
testcase_25 AC 69 ms
23,812 KB
testcase_26 AC 70 ms
21,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class Program
{
    static void Main()
    {
        decimal[] input = Console.ReadLine().Trim().Split(' ').Select(x => decimal.Parse(x)).ToArray();
        Console.WriteLine(Math.Floor(input[0] * ( 1 + (input[1] / 100)) ) );   
    }
}
0