結果

問題 No.350 d=vt
ユーザー michonz4
提出日時 2019-12-20 20:51:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 37,760 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-17 13:05:50
合計ジャッジ時間 1,163 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>
int main() {
  float v;
  int t;
  scanf("%f %d", &v, &t);

  printf("%.f\n", floor((v*t)));
  return 0;
}
0