結果
問題 | No.56 消費税 |
ユーザー |
|
提出日時 | 2017-11-24 01:48:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 479 ms |
コンパイル使用メモリ | 64,128 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-27 06:04:51 |
合計ジャッジ時間 | 1,471 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 18 WA * 5 |
ソースコード
#include <iostream>using namespace std;int main(void){int a, b; cin >> a >> b;float c = (1.0+b/100.0)*a;cout << (int)c << endl;return 0;}