結果
| 問題 |
No.56 消費税
|
| コンテスト | |
| ユーザー |
Series_205
|
| 提出日時 | 2019-10-20 16:22:47 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 139 bytes |
| コンパイル時間 | 656 ms |
| コンパイル使用メモリ | 66,296 KB |
| 最終ジャッジ日時 | 2025-01-08 00:05:57 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 13 WA * 10 |
ソースコード
#include <iostream>
using namespace std;
double d,p;
int main(){
cin>>d>>p;
d*=1.0+p/100.0;
cout<<(int)d<<endl;
return 0;
}
Series_205