結果
問題 |
No.56 消費税
|
ユーザー |
![]() |
提出日時 | 2018-09-13 00:10:08 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 290 bytes |
コンパイル時間 | 933 ms |
コンパイル使用メモリ | 58,124 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 03:27:13 |
合計ジャッジ時間 | 1,394 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
#include <iostream> #include <string> #include <cmath> using namespace std; #define p(x) cout << x << endl; #define el cout << endl; int main(){ cin.tie(0); ios::sync_with_stdio(false); long long d, p; cin >> d >> p; d = d * (100 + p); d /= 100; p(d); }