結果

問題 No.350 d=vt
ユーザー bluemeganebluemegane
提出日時 2018-09-18 13:51:59
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 99,760 KB
実行使用メモリ 22,884 KB
最終ジャッジ日時 2023-09-25 09:46:41
合計ジャッジ時間 4,082 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
20,732 KB
testcase_01 AC 61 ms
20,704 KB
testcase_02 AC 60 ms
20,784 KB
testcase_03 AC 61 ms
22,876 KB
testcase_04 AC 60 ms
18,696 KB
testcase_05 WA -
testcase_06 AC 61 ms
20,764 KB
testcase_07 AC 61 ms
22,720 KB
testcase_08 AC 61 ms
20,700 KB
testcase_09 AC 61 ms
22,812 KB
testcase_10 AC 61 ms
20,768 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var v = double.Parse(line[0]);
        var t = int.Parse(line[1]);
        var ans = (int)(v * t);
        Console.WriteLine(ans);
    }
}
0