結果

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

ソースコード

diff #

#include<iostream>
#include<queue>
#include<cstdio>
#include<utility>
#include<locale>
#include<algorithm>
#include<cmath>
using namespace std;
int main(){
	int k,s;cin>>k>>s;
	double are=(100-k)/100.0;
	are=1/are;
	cout<<(int)(are*s)<<endl;
}
0