結果

問題 No.350 d=vt
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-09-13 00:34:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 212 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 102,736 KB
実行使用メモリ 23,944 KB
最終ジャッジ日時 2023-09-10 17:55:26
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
23,888 KB
testcase_01 AC 65 ms
23,884 KB
testcase_02 AC 64 ms
21,936 KB
testcase_03 AC 63 ms
19,964 KB
testcase_04 AC 65 ms
23,884 KB
testcase_05 AC 64 ms
23,880 KB
testcase_06 AC 63 ms
21,824 KB
testcase_07 AC 65 ms
23,944 KB
testcase_08 AC 64 ms
21,964 KB
testcase_09 AC 64 ms
21,936 KB
testcase_10 AC 64 ms
21,772 KB
testcase_11 AC 64 ms
21,820 KB
testcase_12 AC 63 ms
21,836 KB
testcase_13 AC 62 ms
22,016 KB
testcase_14 AC 62 ms
21,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

class No350{
    static void Main(){
        var num=Console.ReadLine().Split(' ').Select(x=>decimal.Parse(x)).ToArray();
        Console.WriteLine((int)(num[0]*num[1]));
    }
}
0