結果

問題 No.285 消費税2
ユーザー hayashihayashi
提出日時 2019-10-31 10:42:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 4,029 ms
コンパイル使用メモリ 99,776 KB
実行使用メモリ 24,604 KB
最終ジャッジ日時 2023-10-12 23:59:23
合計ジャッジ時間 6,497 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
24,516 KB
testcase_01 AC 60 ms
22,588 KB
testcase_02 AC 61 ms
22,484 KB
testcase_03 AC 60 ms
22,508 KB
testcase_04 AC 60 ms
22,572 KB
testcase_05 AC 60 ms
22,516 KB
testcase_06 AC 60 ms
22,556 KB
testcase_07 AC 60 ms
22,424 KB
testcase_08 AC 60 ms
20,608 KB
testcase_09 AC 60 ms
20,452 KB
testcase_10 AC 59 ms
24,604 KB
testcase_11 AC 59 ms
22,528 KB
testcase_12 AC 60 ms
22,572 KB
testcase_13 AC 60 ms
22,596 KB
testcase_14 AC 60 ms
22,472 KB
testcase_15 AC 60 ms
22,572 KB
testcase_16 AC 59 ms
22,508 KB
testcase_17 AC 58 ms
22,596 KB
testcase_18 AC 60 ms
22,584 KB
testcase_19 AC 60 ms
24,600 KB
testcase_20 AC 60 ms
24,532 KB
testcase_21 AC 60 ms
22,508 KB
testcase_22 AC 59 ms
22,528 KB
testcase_23 AC 59 ms
22,424 KB
testcase_24 AC 59 ms
22,492 KB
testcase_25 AC 59 ms
22,496 KB
testcase_26 AC 60 ms
22,496 KB
testcase_27 AC 61 ms
22,580 KB
testcase_28 AC 60 ms
22,472 KB
testcase_29 AC 60 ms
22,544 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 static System.Console;
namespace ConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            ulong N = ulong.Parse(ReadLine());
            WriteLine(N * 1.08);
        }
    }
}
0