結果
問題 |
No.56 消費税
|
ユーザー |
![]() |
提出日時 | 2024-08-05 09:28:19 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 242 bytes |
コンパイル時間 | 3,750 ms |
コンパイル使用メモリ | 272,072 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-05 09:28:24 |
合計ジャッジ時間 | 4,171 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; ll downfloor(ll x,ll m){ //floor(x/m)を正確に求める ll r=(x%m+m)%m; return (x-r)/m; } int main(){ ll D,P;cin>>D>>P; cout<<downfloor(D*(100+P),100LL)<<endl; }