結果
問題 | No.56 消費税 |
ユーザー | kimny |
提出日時 | 2017-11-16 13:59:00 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 539 bytes |
コンパイル時間 | 762 ms |
コンパイル使用メモリ | 108,284 KB |
実行使用メモリ | 27,204 KB |
最終ジャッジ日時 | 2024-11-25 06:23:44 |
合計ジャッジ時間 | 2,283 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
25,152 KB |
testcase_01 | AC | 28 ms
24,800 KB |
testcase_02 | AC | 27 ms
24,804 KB |
testcase_03 | WA | - |
testcase_04 | AC | 27 ms
25,052 KB |
testcase_05 | AC | 26 ms
24,796 KB |
testcase_06 | AC | 27 ms
24,892 KB |
testcase_07 | AC | 27 ms
24,768 KB |
testcase_08 | AC | 26 ms
24,796 KB |
testcase_09 | AC | 26 ms
24,800 KB |
testcase_10 | AC | 26 ms
24,796 KB |
testcase_11 | AC | 26 ms
24,668 KB |
testcase_12 | AC | 27 ms
26,932 KB |
testcase_13 | AC | 27 ms
26,704 KB |
testcase_14 | AC | 26 ms
24,792 KB |
testcase_15 | AC | 25 ms
22,836 KB |
testcase_16 | AC | 28 ms
24,780 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 | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoder_56 { class Program { static void Main(string[] args) { string[] s = Console.ReadLine().Split(' '); int D = int.Parse(s[0]); int P = int.Parse(s[1]); double tax = 1 + (double)P / 100; double C = D * tax; double cost = Math.Floor(C); Console.WriteLine(cost); Console.ReadLine(); } } }