結果
| 問題 |
No.169 何分かかるの!?
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-06-25 21:39:43 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 202 bytes |
| コンパイル時間 | 1,968 ms |
| コンパイル使用メモリ | 157,756 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-07 17:37:18 |
| 合計ジャッジ時間 | 2,079 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
using namespace std;
#include <bits/stdc++.h>
#define _ ios_base::sync_with_stdio(0);cin.tie(0);
#define __ return EXIT_SUCCESS;
int main()
{
_
int K,S;
cin>>K>>S;
cout<<(100*S/(100-K))<<endl;
__
}