結果

問題 No.379 五円硬貨
ユーザー haruteru
提出日時 2016-06-24 09:44:34
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 54,100 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 20:11:59
合計ジャッジ時間 1,116 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 6 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
using namespace std;

int main()
{
    long double N, G, V;
    cin >> N;
    cin >> G;
    cin >> V;
    printf("%.15Lf\n", ((N / 5) * G) / V);
}
0