結果

問題 No.169 何分かかるの!?
ユーザー hamray
提出日時 2017-11-16 23:04:08
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 296 bytes
コンパイル時間 704 ms
コンパイル使用メモリ 72,448 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 06:48:06
合計ジャッジ時間 1,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<algorithm>
#include<vector>
#include<math.h>
#include<stack>
using namespace std;
int main(void){
    int K, S; cin >> K >> S;
    int ans;
    ans = 100 * S / (100 - K);

    cout << ans << endl;
    return 0;
}
    
0