結果

問題 No.56 消費税
ユーザー 富浜富浜
提出日時 2015-04-06 15:49:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 100,204 KB
実行使用メモリ 24,720 KB
最終ジャッジ日時 2023-09-25 01:49:00
合計ジャッジ時間 4,762 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
22,400 KB
testcase_01 AC 65 ms
24,564 KB
testcase_02 AC 63 ms
22,532 KB
testcase_03 AC 63 ms
20,468 KB
testcase_04 AC 64 ms
24,720 KB
testcase_05 AC 64 ms
22,672 KB
testcase_06 AC 64 ms
22,608 KB
testcase_07 AC 64 ms
24,476 KB
testcase_08 AC 64 ms
24,600 KB
testcase_09 AC 65 ms
24,648 KB
testcase_10 AC 64 ms
24,584 KB
testcase_11 AC 64 ms
22,576 KB
testcase_12 AC 65 ms
24,700 KB
testcase_13 AC 64 ms
24,468 KB
testcase_14 AC 64 ms
24,556 KB
testcase_15 AC 64 ms
22,520 KB
testcase_16 AC 63 ms
20,380 KB
testcase_17 AC 64 ms
22,728 KB
testcase_18 AC 64 ms
22,460 KB
testcase_19 AC 64 ms
22,572 KB
testcase_20 AC 65 ms
22,580 KB
testcase_21 AC 64 ms
22,608 KB
testcase_22 AC 63 ms
24,620 KB
testcase_23 AC 64 ms
22,528 KB
testcase_24 AC 64 ms
24,720 KB
testcase_25 AC 65 ms
24,644 KB
testcase_26 AC 65 ms
24,608 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace OJcsharp
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] str = Console.ReadLine().Split(' ');
            Console.WriteLine(Math.Floor(double.Parse(str[0]) * (100 + double.Parse(str[1])) / 100));
        }
    }
}
0