結果
問題 | No.864 四方演算 |
ユーザー | kyuna |
提出日時 | 2019-08-20 21:14:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 620 bytes |
コンパイル時間 | 650 ms |
コンパイル使用メモリ | 73,992 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-06 16:07:18 |
合計ジャッジ時間 | 1,984 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 13 ms
6,820 KB |
testcase_02 | AC | 9 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 4 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,816 KB |
ソースコード
#include <algorithm> #include <iostream> #include <vector> using namespace std; int main() { long long n, k; cin >> n >> k; vector<pair<int, int>> candy; // a + c, b + d for (long long i = 1; i * i <= k; i++) { if (k % i) continue; candy.emplace_back(i, k / i); if (i * i != k) candy.emplace_back(k / i, i); } auto calc = [&](long long x) { if (x <= 1 || x > n * 2) return 0LL; return n - abs(n + 1 - x); }; long long ans = 0; for (auto &p: candy) { ans += calc(p.first) * calc(p.second); } cout << ans << endl; return 0; }