# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
508357 | ac2hu | Preokret (COCI18_preokret) | C++14 | 1 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
signed main(){
iostream::sync_with_stdio(false);
cin.tie(nullptr);cout.tie(nullptr);
vector<pair<int,int>> temp;
int a;cin >> a;
for(int i = 0;i<a;i++){
int t;cin >> t;
temp.push_back({t,0});
}
int b;cin >> b;
for(int i = 0;i<b;i++){
int t;cin >> t;
temp.push_back({t,1});
}
int half = 1440;
sort(temp.begin(),temp.end());
int c = 0;
for(int i = 0;i<temp.size();i++){
if(temp[i].first <= half)
c++;
else
break;
}
array<int,2> vec = {0,0};
int winner = temp[0].second;
vec[temp[0].second]++;
int tc = 0;
for(int i = 1;i<temp.size();i++){
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |