結果

問題 No.1798 Financial Quiz
ユーザー erbowl
提出日時 2022-07-23 09:38:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 192,856 KB
最終ジャッジ日時 2025-01-30 13:17:10
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll n,p;
    std::cin >> n>>p;
    std::cout << n*(100-p)/100 << std::endl;
}
0