結果
問題 |
No.350 d=vt
|
ユーザー |
![]() |
提出日時 | 2019-10-05 01:02:34 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 196 bytes |
コンパイル時間 | 1,578 ms |
コンパイル使用メモリ | 164,956 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 02:43:35 |
合計ジャッジ時間 | 2,406 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 WA * 1 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef unsigned long long ull; typedef long long ll; int main(){ double v, t; cin >> v >> t; cout << (int)(1000*v*t/1000) << endl; return 0; }