結果

問題 No.221 犯罪都市
ユーザー koba-e964
提出日時 2015-06-05 23:57:28
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 1,458 ms
コンパイル使用メモリ 157,560 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 22:23:07
合計ジャッジ時間 2,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
double n;cin>>n;
double p = n / 10000;
cout << (1- p ) / (1 + 98 * p) * 100 << endl;
}
0