結果

問題 No.445 得点
ユーザー itezpace
提出日時 2017-02-13 06:34:52
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 54,412 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 23:45:24
合計ジャッジ時間 942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
  double a,b,c,d,e;
  int f;
  cin>>a>>b;
  c=50*a;
  d=0.8+(0.2*b);
  e=c/d;
  f=c;
  f+=e;
  cout<<f<<endl;
}
0