結果

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

ソースコード

diff #

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

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