結果

問題 No.169 何分かかるの!?
ユーザー ottyajp
提出日時 2015-05-10 23:11:34
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 57,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 22:08:19
合計ジャッジ時間 1,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
using namespace std;

int main(void){
	int k,s;
	cin>>k;
	cin>>s;

	int k_rem = 100 - k;
	double an = s * 100 / k_rem;
	cout<<floor(an)<<endl;
	return 0;
}
0