結果

問題 No.350 d=vt
ユーザー miku39kkmiku39kk
提出日時 2017-07-26 23:37:19
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 199 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 57,980 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-05 05:28:35
合計ジャッジ時間 893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
    int t,ans;
    float v;
    cin >> v >> t;
    ans = v * t;
    printf("%d\n",ans);
    return 0;
}
0