結果

問題 No.169 何分かかるの!?
ユーザー naniwha12
提出日時 2019-01-28 23:46:43
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 53,980 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-06 17:59:41
合計ジャッジ時間 1,157 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int
main() {
        int k, s;
        int x;
        cin >> k >> s;
        x = (int)(((double)s * 100) / (100 - (double)k));
        cout << x << endl;
        return 0;
}
0