結果
| 問題 |
No.169 何分かかるの!?
|
| コンテスト | |
| ユーザー |
cewxn
|
| 提出日時 | 2016-07-22 03:45:38 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 314 bytes |
| コンパイル時間 | 817 ms |
| コンパイル使用メモリ | 60,980 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-06 08:01:55 |
| 合計ジャッジ時間 | 1,687 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS
#include <cstdio>
#include <cstdlib>
#include <vector>
#include <iostream>
#include <queue>
#include <string>
#include <algorithm>
using namespace std;
typedef unsigned long long ull;
int main() {
int K, S;
cin >> K >> S;
cout << (int)(((double)S / (100 - K)) * 100) << endl;
}
cewxn