結果

問題 No.169 何分かかるの!?
ユーザー Mcpu3
提出日時 2018-04-14 20:28:24
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 189 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 22:35:05
合計ジャッジ時間 884 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
	int k;
	scanf("%d", &k);
	k = 100 - k;
	int s;
	scanf("%d", &s);
	printf("%d\n", ((int)(((double)s / (double)k)*(double)100)));
	return 0;
}
0