結果
問題 | No.475 最終日 - Writerの怠慢 |
ユーザー | けー |
提出日時 | 2017-04-10 23:18:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 537 bytes |
コンパイル時間 | 1,392 ms |
コンパイル使用メモリ | 166,772 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 05:46:40 |
合計ジャッジ時間 | 2,609 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 22 ms
6,940 KB |
testcase_13 | AC | 22 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> #define int long long const int inf=8938103643641919514ll; const int mod=1000000007ll; const int dd[]={0,-1,0,1,0}; using namespace std; int a,b,c,d; struct Node{ int n=0; vector<int> e; }; Node *ppp; int p[114514]; signed main(){ int i,j,k; cin>>a>>b>>c; for(i=0;i<a;i++) cin>>p[i]; d=p[c]+50*b; double ans=1; for(i=0;i<a;i++){ if(p[i]<=p[c]) continue; int x=d-p[i]; int y=(250*b+x-1)/x-4; if(y<1){ ans=0; break; } ans*=(double)(a-y)/(a-1); } cout<<setprecision(15)<<ans<<endl; }