結果

問題 No.428 小数から逃げる夢
ユーザー No
提出日時 2016-10-03 04:21:43
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 1,838 ms
コンパイル使用メモリ 110,008 KB
実行使用メモリ 28,176 KB
最終ジャッジ日時 2024-11-21 15:07:03
合計ジャッジ時間 6,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 100
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 yukikoda
{
    class Program
    {
        static void Main(string[] args)
        {
            decimal d = (decimal)0.1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991;
            decimal n = decimal.Parse(Console.ReadLine());
            Console.WriteLine(d * n);
        }
    }
}
0