結果

問題 No.350 d=vt
ユーザー 👑 rin204rin204
提出日時 2020-07-01 13:59:13
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 64,344 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 22:55:31
合計ジャッジ時間 1,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 8 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(void){
    // Your code here!
    double v, t;
    cin >> v >> t;
    int d = int(v * t);
    cout << d << endl;
    return 0;
}
0