結果
問題 | No.350 d=vt |
ユーザー |
|
提出日時 | 2021-11-13 22:29:12 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 244 bytes |
コンパイル時間 | 1,683 ms |
コンパイル使用メモリ | 184,976 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-28 01:10:41 |
合計ジャッジ時間 | 2,271 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 8 WA * 4 |
ソースコード
#define _GLIBCXX_DEBUG #define ll long long #include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; int main(){ double V; cin >> V; int T; cin >> T; int W = V*10000; ll ans = T*W/10000; cout << ans << endl; }