結果
問題 | No.864 四方演算 |
ユーザー | mencotton |
提出日時 | 2019-08-16 21:37:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 1,000 ms |
コード長 | 719 bytes |
コンパイル時間 | 963 ms |
コンパイル使用メモリ | 75,792 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 10:43:39 |
合計ジャッジ時間 | 1,783 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long ll; vector<ll> divisor(ll n) { vector<ll> ret; for (ll i = 1; i * i <= n; i++) { if (n % i == 0) { ret.push_back(i); if (i * i != n) ret.push_back(n / i); } } sort(begin(ret), end(ret)); return (ret); } int main() { ll n, k; cin >> n >> k; vector<ll> div = divisor(k); ll ret = 0; for (auto x:div) { ll y = k / x; if (x <= n * 2 && y <= n * 2) { ll a = min(x - 1, n * 2 - x + 1); ll b = min(y - 1, n * 2 - y + 1); ret += a * b; } } cout << ret << endl; return 0; }