# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
206668 | 2020-03-04T12:06:40 Z | Ziel | Chessboard (IZhO18_chessboard) | C++17 | 5 ms | 376 KB |
// ~maqsat~ // #pragma GCC target ("avx2") // #pragma GCC optimize ("Ofast") // #pragma GCC optimize ("unroll-loops") #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include <ext/rope> #define F first #define S second #define in insert #define pb push_back #define eb emplace_back #define sz(x) int(x.size()) #define all(x) x.begin(), x.end() #define count1 __builtin_popcountl #define debug(x) cerr << (#x) << " = " << (x) << "\n" #define ACCELERATE ios_base::sync_with_stdio(false),cin.tie(nullptr) #define fre(f) if(fopen(f".in", "r")) freopen(f".in", "r", stdin),freopen(f".out", "w", stdout) #define ever ;; using namespace std; using namespace __gnu_pbds; using namespace __gnu_cxx; using ll = long long; using ull = unsigned long long; // using big = __int128_t; // -10^38...10^38 using db = double; using ld = long double; typedef pair<int, int> ii; typedef pair<ll, ll> pll; template<class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; template<class T> inline void cmin(T &a, T b) { a = min(a, b); } template<class T> inline void cmax(T &a, T b) { a = max(a, b); } const int oo = 0x3f3f3f3f; const ll N = 1e6 + 123; const ll MOD = 1e9 + 7; const ll INF = 1e15 + 9; const db EPS = 1e-9; const db PI = acos(-1); // 3.14159265358979323846 const int dx[] = {1, -1, 0, 0, 1, 1, -1, -1}; const int dy[] = {0, 0, 1, -1, 1, -1, -1, 1}; inline ll calc(int len, int n, int q) { if (!q) { ll kol = (n / len) * (n / len); return kol / 2; } else { ll kol = (n / len) * (n / len); return (kol + 1) / 2; } } main() { #ifdef ZVER cerr << "Ready\n"; #endif fre(""); ACCELERATE; int n, k; cin >> n >> k; if (!k) { ll ans = INF; for (int len = 1; len < n; len++) { if (n % len == 0) { ll x = calc(len, n, 0); ll y = calc(len, n, 1); cmin(ans, min(x, y)); } } cout << ans << '\n'; } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 376 KB | Output is correct |
2 | Incorrect | 5 ms | 376 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 376 KB | Output is correct |
2 | Incorrect | 5 ms | 376 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |