結果
| 問題 | No.864 四方演算 |
| コンテスト | |
| ユーザー |
chocopuu
|
| 提出日時 | 2019-08-16 21:49:31 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 13 ms / 1,000 ms |
| コード長 | 755 bytes |
| 記録 | |
| コンパイル時間 | 1,550 ms |
| コンパイル使用メモリ | 167,516 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-25 10:45:54 |
| 合計ジャッジ時間 | 2,556 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define FOR(i, s, n) for (int i = (s); i < (n); i++)
#define RFOR(i, s, n) for (int i = (n) - 1; i >= (s); i--)
#define REP(i, n) FOR(i, 0, n)
#define RREP(i, n) RFOR(i, 0, n)
#define ALL(a) a.begin(), a.end()
const long long MOD = 1e9+7, INF = 1e18;
template<class T>inline bool CHMAX(T&a,T b){if(a<b){a=b;return true;}return false;}
template<class T>inline bool CHMIN(T&a,T b){if(a>b){a=b;return true;}return false;}
signed main(){
int N,K,ans = 0;
cin>>N>>K;
for(int i = 2;i*i <= K;i++){
if(K%i)continue;
int a = i,b = K / i;
int x = max(0ll,(a-1)-max(0ll,(a-1-N)*2));
int y = max(0ll,(b-1)-max(0ll,(b-1-N)*2));
ans += x*y;
if(a!=b)ans += x*y;
}
cout<<ans<<endl;
}
chocopuu