結果
問題 | No.304 鍵(1) |
ユーザー | k |
提出日時 | 2020-06-20 15:44:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 280 bytes |
コンパイル時間 | 2,205 ms |
コンパイル使用メモリ | 199,152 KB |
実行使用メモリ | 38,832 KB |
最終ジャッジ日時 | 2024-07-17 03:51:13 |
合計ジャッジ時間 | 8,383 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) int main() { ios_base::sync_with_stdio(0); cin.tie(0); double v; int t; cin >> v >> t; long long vt = v * 10000 + 0.5; cout << vt * t / 10000 << endl; return 0; }