結果

問題 No.350 d=vt
ユーザー bluemeganebluemegane
提出日時 2018-09-18 13:56:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 103,068 KB
実行使用メモリ 22,824 KB
最終ジャッジ日時 2023-09-25 09:46:45
合計ジャッジ時間 3,706 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
20,812 KB
testcase_01 AC 61 ms
22,760 KB
testcase_02 AC 60 ms
22,824 KB
testcase_03 AC 60 ms
20,780 KB
testcase_04 AC 61 ms
20,704 KB
testcase_05 AC 60 ms
18,888 KB
testcase_06 AC 59 ms
18,616 KB
testcase_07 AC 60 ms
20,800 KB
testcase_08 AC 61 ms
22,820 KB
testcase_09 AC 60 ms
20,804 KB
testcase_10 AC 60 ms
20,656 KB
testcase_11 AC 62 ms
20,696 KB
testcase_12 AC 61 ms
22,764 KB
testcase_13 AC 61 ms
20,736 KB
testcase_14 AC 61 ms
20,780 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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]) + 0.000000001;
        var t = int.Parse(line[1]);
        var ans = (int)(v * t );
        Console.WriteLine(ans);
    }
}
0