結果

問題 No.350 d=vt
ユーザー Konton7
提出日時 2020-01-14 15:08:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 2,431 ms
コンパイル使用メモリ 191,036 KB
最終ジャッジ日時 2025-01-08 17:59:53
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 8 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;


int main(){
    double v, t, ans;
    cin >> v >> t;
    ans = v * t;
    ans = floor(ans);
    printf("%.0f\n", ans);
    
    return 0;

}
0