結果
| 問題 |
No.169 何分かかるの!?
|
| コンテスト | |
| ユーザー |
siguma323
|
| 提出日時 | 2016-05-25 14:09:50 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 506 bytes |
| コンパイル時間 | 810 ms |
| コンパイル使用メモリ | 94,200 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-11 05:09:17 |
| 合計ジャッジ時間 | 1,613 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
#include <vector>
#include <string>
#include <algorithm>
#include <numeric>
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <utility>
#include <list>
#include <functional>
#include <queue>
#include <map>
#include <iterator>
#include <iomanip>
#include <complex>
#include <cctype>
using namespace std;
using ull = unsigned long long;
using ll = long long;
int main()
{
double k;
int s;
cin >> k >> s;
k = 100 - k;
k/= 100;
s/=k;
cout << s << endl;
}
siguma323