結果

問題 No.169 何分かかるの!?
ユーザー asdfghjkl;
提出日時 2019-11-11 20:38:55
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 227 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 05:24:53
合計ジャッジ時間 1,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
    int k,s;
    int remain;
    double remain2;
    int ans;
    scanf("%d %d",&k,&s);
    remain=100-k;
    remain2=100.0/(remain);
    ans=s*remain2;
    printf("%d\n",ans);
    return 0;
}
0