結果
問題 |
No.350 d=vt
|
ユーザー |
![]() |
提出日時 | 2021-05-01 13:57:55 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 261 bytes |
コンパイル時間 | 2,026 ms |
コンパイル使用メモリ | 193,040 KB |
最終ジャッジ日時 | 2025-01-21 05:11:21 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 7 WA * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<n;i++) static const ll mod=1000000007; #define int long long signed main(void) { double v,t; cin>>v>>t; v*=10000; cout<<(v*t)/10000<<endl; return 0; }