結果
問題 | No.553 AlphaCoder Rating |
ユーザー | tnakao0123 |
提出日時 | 2017-08-13 18:53:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,500 ms |
コード長 | 1,498 bytes |
コンパイル時間 | 904 ms |
コンパイル使用メモリ | 85,440 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 09:10:41 |
合計ジャッジ時間 | 1,579 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:77:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 77 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:78:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 78 | for (int i = 0; i < n; i++) scanf("%d", &rps[i]); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*- * * 553.cc: No.553 AlphaCoder Rating - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 100; const int INF = 1 << 30; /* typedef */ /* global variables */ int rps[MAX_N]; /* subroutines */ inline double sumexp(double p, int n) { // sum_(i=1..n) p^i return p * (1.0 - pow(p, (double)n)) / (1.0 - p); } inline double sumexpinf(double p) { // sum_(i=1..inf) p^i return p / (1.0 - p); } inline double F(int n) { return (n >= INF) ? sqrt(sumexpinf(0.81)) / sumexpinf(0.9) : sqrt(sumexp(0.81, n)) / sumexp(0.9, n); } inline double f(int n) { return (F(n) - F(INF)) / (F(1) - F(INF)) * 1200; } inline double g(double x) { return pow(2.0, x / 800); } // y = 2.0^(x/800) -> x/800 = log2(y) -> x = log2(y) * 800; inline double invg(double x) { return log(x) / log(2.0) * 800; } double rat(int n) { double sum = 0.0, d = 0.9; for (int i = 0; i < n; i++, d *= 0.9) sum += g((double)rps[i]) * d; return invg(sum / sumexp(0.9, n)) - f(n); } /* main */ int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) scanf("%d", &rps[i]); double r = rat(n); printf("%d\n", (int)r); return 0; }