結果
問題 | No.68 よくある棒を切る問題 (2) |
ユーザー | kotatsugame |
提出日時 | 2021-01-10 07:02:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 485 ms / 5,000 ms |
コード長 | 510 bytes |
コンパイル時間 | 699 ms |
コンパイル使用メモリ | 83,164 KB |
実行使用メモリ | 10,276 KB |
最終ジャッジ日時 | 2024-04-30 15:00:40 |
合計ジャッジ時間 | 11,977 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 433 ms
10,232 KB |
testcase_01 | AC | 434 ms
10,228 KB |
testcase_02 | AC | 452 ms
10,224 KB |
testcase_03 | AC | 427 ms
10,276 KB |
testcase_04 | AC | 485 ms
10,220 KB |
testcase_05 | AC | 430 ms
10,220 KB |
testcase_06 | AC | 451 ms
9,832 KB |
testcase_07 | AC | 457 ms
9,960 KB |
testcase_08 | AC | 409 ms
9,940 KB |
testcase_09 | AC | 429 ms
9,996 KB |
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 7 | main() | ^~~~
ソースコード
#include<iostream> #include<iomanip> #include<queue> using namespace std; int N; double ans[5<<17]; main() { cin>>N; priority_queue<pair<double,pair<int,int> > >P; for(int i=0;i<N;i++) { int L;cin>>L; P.push(make_pair(L,make_pair(L,1))); } for(int i=1;i<5<<17;i++) { ans[i]=P.top().first; pair<int,int>p=P.top().second; P.pop(); p.second++; P.push(make_pair((double)p.first/p.second,p)); } int Q;cin>>Q; for(;Q--;) { int k;cin>>k; cout<<fixed<<setprecision(16)<<ans[k]<<endl; } }