結果

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

ソースコード

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 k, s, ans=0;
  cin >> k >> s;

  k=100-k;

  for(int i=0; i<=100; i+=k){
    ans+=s;
  }

  cout << ans-s << endl;

  return 0;
}
0