結果

問題 No.552 十分簡単な星1の問題
ユーザー funakoshifunakoshi
提出日時 2019-06-28 14:14:21
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 101,188 KB
実行使用メモリ 24,668 KB
最終ジャッジ日時 2023-09-14 21:22:57
合計ジャッジ時間 6,577 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
22,756 KB
testcase_01 AC 62 ms
24,668 KB
testcase_02 AC 62 ms
22,400 KB
testcase_03 AC 62 ms
24,588 KB
testcase_04 AC 63 ms
24,476 KB
testcase_05 AC 63 ms
24,536 KB
testcase_06 AC 62 ms
22,416 KB
testcase_07 AC 61 ms
22,624 KB
testcase_08 AC 62 ms
22,540 KB
testcase_09 AC 62 ms
22,616 KB
testcase_10 AC 62 ms
24,660 KB
testcase_11 AC 62 ms
24,568 KB
testcase_12 AC 62 ms
22,664 KB
testcase_13 AC 62 ms
22,532 KB
testcase_14 AC 63 ms
24,572 KB
testcase_15 AC 63 ms
22,748 KB
testcase_16 AC 63 ms
24,484 KB
testcase_17 AC 63 ms
22,576 KB
testcase_18 AC 61 ms
22,572 KB
testcase_19 AC 62 ms
24,648 KB
testcase_20 AC 61 ms
22,484 KB
testcase_21 AC 62 ms
24,512 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 64 ms
24,668 KB
testcase_31 AC 62 ms
22,472 KB
testcase_32 AC 62 ms
22,616 KB
testcase_33 AC 63 ms
22,492 KB
testcase_34 AC 63 ms
24,492 KB
testcase_35 AC 62 ms
24,644 KB
testcase_36 AC 63 ms
24,520 KB
testcase_37 AC 63 ms
22,552 KB
testcase_38 AC 62 ms
22,504 KB
testcase_39 AC 63 ms
22,452 KB
testcase_40 AC 62 ms
22,484 KB
testcase_41 AC 63 ms
24,560 KB
testcase_42 AC 63 ms
22,500 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace yukicoderTest
{
    class Program
    {
        static void Main(string[] args)
        {
            string input = Console.ReadLine();
            double num = double.Parse(input);
            num = num * 10;
            Console.WriteLine(num);
        }
    }
}
0