結果

問題 No.56 消費税
ユーザー eringi103eringi103
提出日時 2016-10-21 10:07:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 671 bytes
コンパイル時間 763 ms
コンパイル使用メモリ 110,336 KB
実行使用メモリ 27,920 KB
最終ジャッジ日時 2024-07-18 03:19:21
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
23,472 KB
testcase_01 AC 30 ms
25,832 KB
testcase_02 AC 30 ms
27,920 KB
testcase_03 AC 30 ms
25,752 KB
testcase_04 AC 28 ms
25,648 KB
testcase_05 AC 29 ms
25,572 KB
testcase_06 AC 29 ms
25,516 KB
testcase_07 AC 29 ms
25,700 KB
testcase_08 AC 29 ms
25,828 KB
testcase_09 AC 29 ms
25,524 KB
testcase_10 AC 29 ms
25,444 KB
testcase_11 AC 30 ms
25,704 KB
testcase_12 AC 31 ms
25,704 KB
testcase_13 AC 31 ms
25,568 KB
testcase_14 AC 30 ms
25,452 KB
testcase_15 AC 29 ms
25,448 KB
testcase_16 AC 30 ms
25,576 KB
testcase_17 AC 30 ms
27,736 KB
testcase_18 AC 30 ms
27,804 KB
testcase_19 AC 31 ms
25,880 KB
testcase_20 AC 30 ms
25,648 KB
testcase_21 AC 30 ms
25,568 KB
testcase_22 AC 31 ms
25,704 KB
testcase_23 AC 31 ms
27,672 KB
testcase_24 AC 30 ms
25,832 KB
testcase_25 AC 31 ms
27,740 KB
testcase_26 AC 30 ms
25,828 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.Collections.Generic;

public class Program
{
  static void Main()
  {
    string Kingaku_ = Console.ReadLine();
    string Yukikoda_ = "";
    string P_ = "";
    int i = 0;

    while (Kingaku_.Substring(i,1) != " ")
    {
      Yukikoda_ = Yukikoda_ + Kingaku_.Substring(i,1);
      i++;
    }
    P_ = Kingaku_.Substring(i + 1);

    int Yukikoda = Convert.ToInt32(Yukikoda_);
    int P = Convert.ToInt32(P_);

    double Kingaku = Yukikoda + (Yukikoda * P / 100);
    string result = Convert.ToString(Kingaku);
    int k = result.IndexOf(".");
    if (k > 0)
    {
      result.Remove(k);      
    }

    Console.WriteLine(result);

  }
}
0