| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1286135 | lyra_g13 | Square or Rectangle? (NOI19_squarerect) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
using ll = long long;
bool am_i_square(int N, int Q){
for(int i = 0 ; i < N ; i++){
for(int j = 0 ; j < N ; j++){
bool inside_shape(int (i+1), int (j+1));
}
}
}
int main(){
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
ll t;
while(t--){
ll n , q;
std::cin >> n >> q;
am_i_square(n , q);
}
}
