結果

問題 No.285 消費税2
ユーザー mencottonmencotton
提出日時 2017-12-31 21:45:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 2,974 ms
コンパイル使用メモリ 103,100 KB
実行使用メモリ 24,764 KB
最終ジャッジ日時 2023-08-23 12:35:11
合計ジャッジ時間 4,737 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,684 KB
testcase_01 AC 59 ms
24,604 KB
testcase_02 AC 58 ms
22,560 KB
testcase_03 AC 58 ms
22,636 KB
testcase_04 AC 58 ms
20,496 KB
testcase_05 AC 59 ms
22,644 KB
testcase_06 AC 61 ms
24,592 KB
testcase_07 AC 60 ms
22,756 KB
testcase_08 AC 61 ms
24,668 KB
testcase_09 AC 59 ms
22,764 KB
testcase_10 AC 58 ms
22,744 KB
testcase_11 AC 57 ms
22,532 KB
testcase_12 AC 58 ms
22,640 KB
testcase_13 AC 57 ms
22,496 KB
testcase_14 AC 57 ms
22,656 KB
testcase_15 AC 58 ms
20,492 KB
testcase_16 AC 58 ms
22,624 KB
testcase_17 AC 60 ms
22,504 KB
testcase_18 AC 60 ms
24,724 KB
testcase_19 AC 60 ms
22,628 KB
testcase_20 AC 61 ms
22,564 KB
testcase_21 AC 60 ms
24,680 KB
testcase_22 AC 61 ms
22,500 KB
testcase_23 AC 59 ms
24,764 KB
testcase_24 AC 58 ms
22,540 KB
testcase_25 AC 57 ms
20,584 KB
testcase_26 AC 57 ms
22,536 KB
testcase_27 AC 58 ms
22,556 KB
testcase_28 AC 57 ms
22,608 KB
testcase_29 AC 57 ms
22,668 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;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            double d = double.Parse(Console.ReadLine());
            Console.WriteLine(d * 27 / 25);
        }
    }
}
0