結果

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

ソースコード

diff #

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

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