# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1252066 | antarbanik | Finding Routers (IOI20_routers) | C++20 | 0 ms | 0 KiB |
#include "routers.h"
vector<int> find_routers(int l, int n, int q){
vector<int> ans;
for(int i = 1;i<=l;++i){
if(use_detector(i) == 0) continue;
ans.pb((i-1)*2);
}
return ans;
}