結果
問題 | No.864 四方演算 |
ユーザー | ut0s |
提出日時 | 2019-08-17 08:22:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,196 bytes |
コンパイル時間 | 1,579 ms |
コンパイル使用メモリ | 170,340 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-24 18:54:22 |
合計ジャッジ時間 | 3,915 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
/** @file main.cpp @title No.864 四方演算 @url https://yukicoder.me/problems/no/864 **/ #include <bits/stdc++.h> using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) vector<uint> make_divisors(uint n) { vector<uint> divisors; for (uint i = 1; i * i <= n; i++) { if (n % i == 0) { divisors.push_back(i); if (i != (n / i)) { divisors.push_back(n / i); } } } // sort(ALL(divisors)); return divisors; } uint seps(uint q, uint N) { if (2 <= q && q <= N + 1) { return q - 1; } else if (N + 2 <= q && q <= 2 * N) { return 2 * N + 1 - q; } else { return 0; } } template <class T> void show(vector<T>& v) { for (uint i = 0; i < v.size(); i++) { cout << v[i] << " "; } cout << "\n"; } int main() { uint N, K; cin >> N >> K; vector<uint> divs = make_divisors(K); // show(divs); LL ans = 0; for (auto i : divs) { if (i == 1 || i == K) { continue; } uint j = K / i; // cout << seps(i, N) << " , " << seps(j, N) << "\n"; ans += seps(i, N) * seps(j, N); } cout << ans << endl; return 0; }