結果
問題 | No.864 四方演算 |
ユーザー | cider |
提出日時 | 2019-08-16 22:22:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 462 bytes |
コンパイル時間 | 1,735 ms |
コンパイル使用メモリ | 170,220 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 18:06:44 |
合計ジャッジ時間 | 2,852 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 10 ms
5,376 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 | WA | - |
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 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; vector<int> div(int a) { vector<int> ret; for (int i = 2; i <= sqrt(a); ++i) { if (a % i == 0)ret.push_back(i); } return ret; } int combo(int a, int n) { if (n * 2 < a)return 0; if (a <= n)return a - 1; return n * 2 - a; } signed main() { int n, k; int ans = 0; cin >> n >> k; for (int i : div(k)) { int j = k - i; ans += combo(i, n) * combo(j, n); } cout << ans << endl; }