結果

問題 No.379 五円硬貨
ユーザー k
提出日時 2020-06-15 00:26:15
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 3,204 ms
コンパイル使用メモリ 191,472 KB
最終ジャッジ日時 2025-01-11 04:22:09
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 6 WA * 10
権限があれば一括ダウンロードができます

ソースコード

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);

  int n, g, v;
  cin >> n >> g >> v;
  cout << fixed << setprecision(15) << n / 5.0 * g / v << endl;
  
  return 0;
}
0