結果

問題 No.552 十分簡単な星1の問題
ユーザー naimonon77naimonon77
提出日時 2019-10-29 20:07:15
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 2,045 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 113,284 KB
実行使用メモリ 28,108 KB
最終ジャッジ日時 2024-09-14 21:35:45
合計ジャッジ時間 3,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
24,404 KB
testcase_01 AC 32 ms
24,272 KB
testcase_02 AC 32 ms
24,492 KB
testcase_03 AC 31 ms
26,452 KB
testcase_04 AC 31 ms
24,272 KB
testcase_05 AC 31 ms
24,536 KB
testcase_06 AC 32 ms
24,404 KB
testcase_07 AC 32 ms
26,324 KB
testcase_08 AC 32 ms
26,448 KB
testcase_09 AC 31 ms
22,488 KB
testcase_10 AC 31 ms
24,628 KB
testcase_11 AC 32 ms
24,660 KB
testcase_12 AC 31 ms
24,280 KB
testcase_13 AC 31 ms
24,532 KB
testcase_14 AC 32 ms
24,408 KB
testcase_15 AC 31 ms
24,284 KB
testcase_16 AC 32 ms
26,324 KB
testcase_17 AC 32 ms
28,108 KB
testcase_18 AC 32 ms
24,140 KB
testcase_19 AC 32 ms
24,276 KB
testcase_20 AC 32 ms
22,200 KB
testcase_21 AC 31 ms
24,232 KB
testcase_22 AC 32 ms
26,068 KB
testcase_23 AC 32 ms
24,408 KB
testcase_24 AC 32 ms
24,152 KB
testcase_25 AC 32 ms
26,056 KB
testcase_26 AC 31 ms
22,324 KB
testcase_27 AC 32 ms
26,080 KB
testcase_28 AC 32 ms
24,404 KB
testcase_29 AC 31 ms
24,032 KB
testcase_30 AC 32 ms
24,364 KB
testcase_31 AC 32 ms
24,536 KB
testcase_32 AC 31 ms
22,448 KB
testcase_33 AC 32 ms
24,400 KB
testcase_34 AC 32 ms
24,400 KB
testcase_35 AC 33 ms
26,448 KB
testcase_36 AC 31 ms
24,404 KB
testcase_37 AC 31 ms
22,324 KB
testcase_38 AC 31 ms
24,112 KB
testcase_39 AC 32 ms
24,272 KB
testcase_40 AC 32 ms
26,312 KB
testcase_41 AC 32 ms
22,068 KB
testcase_42 AC 32 ms
26,200 KB
testcase_43 AC 32 ms
24,152 KB
testcase_44 AC 31 ms
24,112 KB
testcase_45 AC 31 ms
22,192 KB
testcase_46 AC 32 ms
26,208 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