結果
| 問題 | No.56 消費税 |
| コンテスト | |
| ユーザー |
re1ns
|
| 提出日時 | 2015-11-06 23:01:12 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 193 bytes |
| 記録 | |
| コンパイル時間 | 313 ms |
| コンパイル使用メモリ | 83,712 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-26 05:21:30 |
| 合計ジャッジ時間 | 1,943 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 5 WA * 18 |
ソースコード
#include<iostream>
#include<cmath>
#include<string>
#include<algorithm>
using namespace std;
int main(){
int d,p;
cin >> d >> p;
cout << floor(d+(double)d*(double)p/100) << endl;
}
re1ns