結果

問題 No.169 何分かかるの!?
ユーザー Yut176
提出日時 2016-06-12 20:16:29
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 253 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 60,176 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-09 13:05:59
合計ジャッジ時間 1,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<stdio.h>
#include<stdlib.h>
#include<vector>
#include<string>
#include<sstream>
using namespace std;


int main(){

  int k,s;
  cin >> k;
  cin >> s;

  cout << s* (k/(100-k) + 1) << endl;

  return 0;
}
0