結果

問題 No.304 鍵(1)
ユーザー kk
提出日時 2020-06-20 15:44:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 280 bytes
コンパイル時間 3,496 ms
コンパイル使用メモリ 197,252 KB
実行使用メモリ 36,020 KB
最終ジャッジ日時 2023-09-24 03:41:18
合計ジャッジ時間 8,194 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0