結果
問題 | No.864 四方演算 |
ユーザー | rodea |
提出日時 | 2021-01-10 15:47:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,350 bytes |
コンパイル時間 | 1,094 ms |
コンパイル使用メモリ | 106,876 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-21 03:18:04 |
合計ジャッジ時間 | 2,474 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 9 ms
6,816 KB |
testcase_03 | AC | 10 ms
6,816 KB |
testcase_04 | AC | 12 ms
6,816 KB |
testcase_05 | AC | 8 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | AC | 10 ms
6,816 KB |
testcase_08 | AC | 9 ms
6,820 KB |
testcase_09 | AC | 6 ms
6,820 KB |
testcase_10 | AC | 6 ms
6,820 KB |
testcase_11 | AC | 4 ms
6,820 KB |
testcase_12 | AC | 9 ms
6,816 KB |
testcase_13 | AC | 7 ms
6,820 KB |
testcase_14 | AC | 4 ms
6,816 KB |
testcase_15 | AC | 13 ms
6,816 KB |
testcase_16 | AC | 10 ms
6,816 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 3 ms
6,816 KB |
testcase_24 | WA | - |
testcase_25 | AC | 5 ms
6,816 KB |
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 |
ソースコード
#pragma GCC optimize("O3") #include <iostream> #include <iomanip> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <cfloat> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <fstream> #include <functional> #include <bitset> using namespace std; using ll = long long; using P = pair<int, int>; using T = tuple<int, int, int>; template <class T> inline T chmax(T &a, const T b) {return a = (a < b) ? b : a;} template <class T> inline T chmin(T &a, const T b) {return a = (a > b) ? b : a;} constexpr int MOD = 1e9 + 7; constexpr int inf = 1e9; constexpr long long INF = 1e18; #define all(a) (a).begin(), (a).end() int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; int main(){ cin.tie(0); ios::sync_with_stdio(false); ll n, k; cin>>n>>k; ll ans = 0; for(ll i=2; i*i<=k; i++){ if(k % i == 0){ ll ac = i, bd = k / i; ll A = min(max(0LL, (n - ac / 2) * 2) + !(ac % 2), ac - 1); ll B = min(max(0LL, (n - bd / 2) * 2) + !(bd % 2), bd - 1); ans += A * B * 2; } } cout << ans << endl; return 0; }