結果
問題 | No.221 犯罪都市 |
ユーザー |
|
提出日時 | 2019-01-08 22:12:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 306 bytes |
コンパイル時間 | 1,562 ms |
コンパイル使用メモリ | 166,104 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-24 00:49:21 |
合計ジャッジ時間 | 2,290 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; int x = n * 100; int y = 1000000 - x; double yy = 1.0 * y / 100; double xx = 1.0 * x * 99 / 100; cout << setprecision(5) << fixed << 100 * yy / (xx + yy) << endl; return 0; }