結果

問題 No.169 何分かかるの!?
ユーザー funakoshi
提出日時 2019-08-09 15:51:55
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 263 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 27,776 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 07:38:36
合計ジャッジ時間 1,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

int main(void)
{
    double percent,totaltime=0;
    int min;
    scanf("%lf",&percent);
    scanf("%d",&min);
    totaltime=min/((100-percent)/100);
    printf("%d",(int)totaltime);
}
0