結果

問題 No.56 消費税
ユーザー AreTrashAreTrash
提出日時 2016-04-13 07:34:13
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 237 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 101,484 KB
実行使用メモリ 23,744 KB
最終ジャッジ日時 2023-09-25 03:30:56
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
23,568 KB
testcase_01 AC 60 ms
21,616 KB
testcase_02 AC 61 ms
21,660 KB
testcase_03 AC 61 ms
23,664 KB
testcase_04 AC 61 ms
23,520 KB
testcase_05 AC 62 ms
21,516 KB
testcase_06 AC 61 ms
21,676 KB
testcase_07 AC 63 ms
23,640 KB
testcase_08 AC 62 ms
23,624 KB
testcase_09 AC 63 ms
19,516 KB
testcase_10 AC 61 ms
21,516 KB
testcase_11 AC 60 ms
19,604 KB
testcase_12 AC 61 ms
19,464 KB
testcase_13 AC 61 ms
19,432 KB
testcase_14 AC 61 ms
21,632 KB
testcase_15 AC 61 ms
23,744 KB
testcase_16 AC 64 ms
23,544 KB
testcase_17 AC 61 ms
21,724 KB
testcase_18 AC 62 ms
23,708 KB
testcase_19 AC 61 ms
23,556 KB
testcase_20 AC 61 ms
23,596 KB
testcase_21 AC 61 ms
21,480 KB
testcase_22 AC 61 ms
23,508 KB
testcase_23 AC 61 ms
21,524 KB
testcase_24 AC 62 ms
23,592 KB
testcase_25 AC 60 ms
21,492 KB
testcase_26 AC 61 ms
23,524 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;

public class Program {
    public static void Main(string[] args){
        var i = Console.ReadLine().Split().ToList().ConvertAll(int.Parse);
        Console.WriteLine(i[0] * (100 + i[1]) / 100);
    }
}
0