結果
| 問題 | No.169 何分かかるの!? | 
| コンテスト | |
| ユーザー |  Yut176 | 
| 提出日時 | 2016-06-12 20:21:36 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 259 bytes | 
| コンパイル時間 | 556 ms | 
| コンパイル使用メモリ | 60,760 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-10-09 13:06:11 | 
| 合計ジャッジ時間 | 1,433 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 22 | 
ソースコード
#include<iostream>
#include<algorithm>
#include<stdio.h>
#include<stdlib.h>
#include<vector>
#include<string>
#include<sstream>
using namespace std;
int main(){
  double k,s;
  cin >> k;
  cin >> s;
  cout << (int)(s* 100/(100-k)) << endl;
  return 0;
}
            
            
            
        