結果

問題 No.210 探し物はどこですか?
ユーザー kotatsugamekotatsugame
提出日時 2020-03-11 06:33:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-15 23:58:58
合計ジャッジ時間 24,029 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
5,248 KB
testcase_01 AC 202 ms
5,248 KB
testcase_02 AC 228 ms
5,248 KB
testcase_03 AC 573 ms
5,248 KB
testcase_04 AC 569 ms
5,248 KB
testcase_05 AC 566 ms
5,248 KB
testcase_06 AC 571 ms
5,248 KB
testcase_07 AC 567 ms
5,248 KB
testcase_08 AC 517 ms
5,248 KB
testcase_09 AC 521 ms
5,248 KB
testcase_10 AC 522 ms
5,248 KB
testcase_11 AC 546 ms
5,248 KB
testcase_12 AC 549 ms
5,248 KB
testcase_13 AC 556 ms
5,248 KB
testcase_14 AC 604 ms
5,248 KB
testcase_15 AC 608 ms
5,248 KB
testcase_16 AC 600 ms
5,248 KB
testcase_17 AC 616 ms
5,248 KB
testcase_18 AC 276 ms
5,248 KB
testcase_19 AC 283 ms
5,248 KB
testcase_20 AC 310 ms
5,248 KB
testcase_21 AC 289 ms
5,248 KB
testcase_22 AC 292 ms
5,248 KB
testcase_23 AC 584 ms
5,248 KB
testcase_24 AC 600 ms
5,248 KB
testcase_25 AC 603 ms
5,248 KB
testcase_26 AC 589 ms
5,248 KB
testcase_27 AC 552 ms
5,248 KB
testcase_28 AC 420 ms
5,248 KB
testcase_29 AC 430 ms
5,248 KB
testcase_30 AC 423 ms
5,248 KB
testcase_31 AC 420 ms
5,248 KB
testcase_32 AC 423 ms
5,248 KB
testcase_33 AC 572 ms
5,248 KB
testcase_34 AC 574 ms
5,248 KB
testcase_35 AC 589 ms
5,248 KB
testcase_36 AC 558 ms
5,248 KB
testcase_37 AC 577 ms
5,248 KB
testcase_38 AC 455 ms
5,248 KB
testcase_39 AC 454 ms
5,248 KB
testcase_40 AC 447 ms
5,248 KB
testcase_41 AC 455 ms
5,248 KB
testcase_42 AC 449 ms
5,248 KB
testcase_43 AC 87 ms
5,248 KB
testcase_44 AC 133 ms
5,248 KB
testcase_45 AC 582 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #
プレゼンテーションモードにする

#include<iostream>
#include<queue>
#include<iomanip>
using namespace std;
int N;
int p[1000],q[1000];
double ans;
main()
{
cin>>N;
for(int i=0;i<N;i++)cin>>p[i];
for(int i=0;i<N;i++)cin>>q[i];
priority_queue<pair<double,double> >P;
for(int i=0;i<N;i++)
{
P.push(make_pair(p[i]*q[i]/1e5,q[i]/1e2));
}
for(int i=1;i<=4e6;i++)
{
pair<double,double>a=P.top();P.pop();
ans+=i*a.first;
a.first*=1-a.second;
P.push(a);
}
cout<<fixed<<setprecision(16)<<ans<<endl;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0