結果

問題 No.552 十分簡単な星1の問題
ユーザー naimonon77naimonon77
提出日時 2019-10-29 20:07:15
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 2,045 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 105,708 KB
実行使用メモリ 22,988 KB
最終ジャッジ日時 2023-10-12 23:30:01
合計ジャッジ時間 7,349 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
20,880 KB
testcase_01 AC 59 ms
22,880 KB
testcase_02 AC 60 ms
20,860 KB
testcase_03 AC 60 ms
20,956 KB
testcase_04 AC 60 ms
22,988 KB
testcase_05 AC 60 ms
22,916 KB
testcase_06 AC 60 ms
18,904 KB
testcase_07 AC 60 ms
18,952 KB
testcase_08 AC 61 ms
22,852 KB
testcase_09 AC 61 ms
21,004 KB
testcase_10 AC 61 ms
20,980 KB
testcase_11 AC 61 ms
22,908 KB
testcase_12 AC 61 ms
20,776 KB
testcase_13 AC 61 ms
20,864 KB
testcase_14 AC 61 ms
22,968 KB
testcase_15 AC 59 ms
22,800 KB
testcase_16 AC 58 ms
22,692 KB
testcase_17 AC 59 ms
22,888 KB
testcase_18 AC 60 ms
20,852 KB
testcase_19 AC 60 ms
20,940 KB
testcase_20 AC 60 ms
20,784 KB
testcase_21 AC 61 ms
20,848 KB
testcase_22 AC 60 ms
22,752 KB
testcase_23 AC 60 ms
20,920 KB
testcase_24 AC 62 ms
22,896 KB
testcase_25 AC 61 ms
22,836 KB
testcase_26 AC 60 ms
20,920 KB
testcase_27 AC 60 ms
20,972 KB
testcase_28 AC 60 ms
22,780 KB
testcase_29 AC 61 ms
20,832 KB
testcase_30 AC 61 ms
22,824 KB
testcase_31 AC 63 ms
20,892 KB
testcase_32 AC 61 ms
20,844 KB
testcase_33 AC 62 ms
20,832 KB
testcase_34 AC 61 ms
20,836 KB
testcase_35 AC 60 ms
20,896 KB
testcase_36 AC 61 ms
20,960 KB
testcase_37 AC 60 ms
20,916 KB
testcase_38 AC 59 ms
20,776 KB
testcase_39 AC 60 ms
20,736 KB
testcase_40 AC 61 ms
22,824 KB
testcase_41 AC 60 ms
22,880 KB
testcase_42 AC 60 ms
20,780 KB
testcase_43 AC 60 ms
20,656 KB
testcase_44 AC 61 ms
20,856 KB
testcase_45 AC 58 ms
20,808 KB
testcase_46 AC 61 ms
20,916 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;
using System.Threading.Tasks;
using System.IO;
using System.Runtime.CompilerServices;
//using System.Web.UI;
using Debug = System.Diagnostics.Debug;
// using System.Drawing.Primitives;
//using System.Drawing;
using System.Windows;
using System.Numerics;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            new Solver().Solve();
        }
    }

    //class Cout {
    //    public static Cout operator >>(
    //        Cout a, int b)
    //    {
    //        Console.WriteLine(b);
    //        return a;
    //    }
    //    //public void Cout(long a) { Console.WriteLine(a); }
    //    //public void Cout(double a) { Console.WriteLine(a); }
    //}


    class Solver
    {
        public const double inf = double.PositiveInfinity;
        readonly TextWriter error = Console.Error;

        public void Rep(int n_, Action<int> action)
        {
            for (int i = 0; i < n_; i++)
            {
                action(i);
            }
        }

        public string ReadLine()
        {
            return Console.ReadLine();
        }

        public string ReadNext()
        {
            var s = "";
            while (true)
            {
                var c = Console.Read();
                if (c == ' ' || c == '\n') break;
                s += (char)c;
            }
            return s;
        }

        public long ReadLong()
        {
            return Stol(ReadNext());
        }

        public long Stol(string s)
        {
            return long.Parse(s);
        }

        public static void Write<T>(T a) 
            where T : IComparable
        { Console.Write(a); }

        public static void WriteL<T>(T a)
            where T : IComparable
        { Console.WriteLine(a); }

        long n;

        public void Solve()
        {
            var s = ReadLine();

            var a = BigInteger.Parse(s);

            WriteL(a * 10);
        }
    }
}
0