結果

問題 No.285 消費税2
ユーザー _matumo__matumo_
提出日時 2018-08-23 17:43:04
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 1,766 ms
コンパイル使用メモリ 102,712 KB
実行使用メモリ 24,624 KB
最終ジャッジ日時 2023-08-27 06:28:21
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
22,504 KB
testcase_01 AC 56 ms
22,460 KB
testcase_02 AC 56 ms
22,440 KB
testcase_03 AC 56 ms
22,492 KB
testcase_04 AC 55 ms
22,656 KB
testcase_05 AC 54 ms
22,568 KB
testcase_06 AC 54 ms
22,528 KB
testcase_07 AC 55 ms
20,496 KB
testcase_08 AC 54 ms
22,552 KB
testcase_09 AC 57 ms
24,504 KB
testcase_10 AC 59 ms
24,616 KB
testcase_11 AC 58 ms
22,604 KB
testcase_12 AC 55 ms
24,604 KB
testcase_13 AC 54 ms
22,612 KB
testcase_14 AC 58 ms
20,380 KB
testcase_15 AC 57 ms
24,584 KB
testcase_16 AC 54 ms
22,504 KB
testcase_17 AC 57 ms
24,564 KB
testcase_18 AC 55 ms
24,604 KB
testcase_19 AC 53 ms
20,460 KB
testcase_20 AC 54 ms
24,448 KB
testcase_21 AC 58 ms
24,624 KB
testcase_22 AC 59 ms
24,600 KB
testcase_23 AC 57 ms
22,632 KB
testcase_24 AC 56 ms
22,592 KB
testcase_25 AC 57 ms
22,568 KB
testcase_26 AC 54 ms
22,580 KB
testcase_27 AC 55 ms
20,572 KB
testcase_28 AC 54 ms
24,504 KB
testcase_29 AC 55 ms
22,500 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;
using System.Linq;
using System.Text;

namespace YukiCoder
{
    class Program
    {
        static void Main(string[] args)
        {
            long na = long.Parse(Console.ReadLine());
            Console.WriteLine(na * 1.08);
            Console.ReadLine();
        }
    }
}
0