結果
| 問題 |
No.56 消費税
|
| コンテスト | |
| ユーザー |
re1ns
|
| 提出日時 | 2015-11-06 23:06:27 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 209 bytes |
| コンパイル時間 | 396 ms |
| コンパイル使用メモリ | 60,628 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-18 02:59:28 |
| 合計ジャッジ時間 | 1,089 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 22 WA * 1 |
ソースコード
#include<iostream>
#include<cmath>
#include<string>
#include<algorithm>
using namespace std;
int main(){
long long int d,p,tax;
cin >> d >> p;
tax = d*((double)p/100);
cout << d+tax << endl;
}
re1ns