結果

問題 No.56 消費税
ユーザー miku39kk
提出日時 2018-01-03 21:35:32
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 234 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 62,968 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 02:28:52
合計ジャッジ時間 1,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <math.h>
using namespace std;

int main() {
    int a,b,ans;
    cin >> a >> b;
    ans = a * (1 + 0.01 * b);
    cout << ans;
    
    return 0;
}
0