結果

問題 No.350 d=vt
ユーザー michonz4
提出日時 2019-12-20 20:50:51
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-16 04:57:23
合計ジャッジ時間 889 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 8 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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