結果
問題 | No.926 休日の平均 |
ユーザー |
![]() |
提出日時 | 2020-02-19 23:54:09 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 127 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 27,136 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-08 18:26:33 |
合計ジャッジ時間 | 1,238 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#include<stdio.h>int main(){double a, b, c;scanf("%lf %lf %lf", &a, &b, &c);printf("%.20lf\n", a * c / b);return 0;}