結果
| 問題 | 
                            No.56 消費税
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2019-05-14 22:50:45 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 137 bytes | 
| コンパイル時間 | 632 ms | 
| コンパイル使用メモリ | 66,480 KB | 
| 最終ジャッジ日時 | 2025-01-07 03:41:31 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 18 WA * 5 | 
ソースコード
#include <iostream>
using namespace std;
int main(){
  int d,ans;
  float p;
  cin >>d>>p;
  p/=100;
  ans=d*(p+1);
  cout<<ans<<endl;
}