結果

問題 No.169 何分かかるの!?
ユーザー tenkyu9
提出日時 2018-01-07 14:48:37
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 314 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 67,828 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 09:58:49
合計ジャッジ時間 1,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<cmath>
#include<math.h>
#include<iomanip>
#include<stdio.h>
#include<cstring>
using namespace std;
 
int main(){

  int s;
  double k, ans=0;
  cin >> k >> s;

  k=100.0-k;
  k/=100.0;

  ans=(double)s/k;

  cout << (int)ans << endl;

  return 0;
}
0