結果

問題 No.85 TVザッピング(1)
ユーザー imgry22
提出日時 2014-12-11 18:54:41
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 54,132 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 20:36:33
合計ジャッジ時間 1,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

int main()
{
  double d, p;

  cin >> d >> p;

  cout << (int)((1+0.01*p)*d) << endl;

  return 0;
}
0