結果

問題 No.169 何分かかるの!?
ユーザー 富浜富浜
提出日時 2015-04-06 17:18:39
言語 C#(csc)
(csc 3.9.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 252 bytes
コンパイル時間 2,970 ms
コンパイル使用メモリ 98,328 KB
実行使用メモリ 24,840 KB
最終ジャッジ日時 2023-09-17 06:15:21
合計ジャッジ時間 3,769 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 52 ms
24,684 KB
testcase_02 AC 51 ms
24,792 KB
testcase_03 AC 52 ms
22,528 KB
testcase_04 AC 52 ms
24,596 KB
testcase_05 AC 50 ms
24,684 KB
testcase_06 AC 50 ms
22,712 KB
testcase_07 AC 52 ms
22,556 KB
testcase_08 AC 51 ms
22,764 KB
testcase_09 AC 52 ms
22,528 KB
testcase_10 AC 51 ms
24,628 KB
testcase_11 AC 54 ms
24,696 KB
testcase_12 AC 54 ms
24,644 KB
testcase_13 AC 52 ms
24,680 KB
testcase_14 AC 51 ms
22,620 KB
testcase_15 AC 51 ms
24,692 KB
testcase_16 AC 51 ms
22,668 KB
testcase_17 AC 51 ms
24,604 KB
testcase_18 AC 54 ms
22,512 KB
testcase_19 AC 51 ms
22,692 KB
testcase_20 AC 51 ms
22,648 KB
testcase_21 AC 53 ms
22,636 KB
testcase_22 AC 54 ms
22,504 KB
testcase_23 AC 55 ms
22,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace OJcsharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(Math.Floor(100 / (100-double.Parse(Console.ReadLine())) * double.Parse(Console.ReadLine())));
        }
    }
}
0