結果
問題 | No.864 四方演算 |
ユーザー | 🍮かんプリン |
提出日時 | 2019-08-16 23:03:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,466 bytes |
コンパイル時間 | 1,647 ms |
コンパイル使用メモリ | 167,712 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 20:54:48 |
合計ジャッジ時間 | 2,720 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 ALL(obj) (obj).begin(),(obj).end() #define RALL(obj) (obj).rbegin(),(obj).rend() #define REP(i, n) for(int i = 0; i < (int)(n); i++) #define REPR(i, n) for(int i = (int)(n); i >= 0; i--) #define FOR(i,n,m) for(int i = (int)(n); i < int(m); i++) using namespace std; typedef long long ll; const int MOD = 1e9 + 7; const int INF = 1e9 + 6; const ll LLINF = 4e18; int main() { ll n, k, ans = 0; cin >> n >> k; for (ll i = 2; i * i <= k; i++) { if (k % i == 0) { cout << i << " " << k / i << " "; if (i <= n) { if (k / i <= n) { ans += (i - 1) * (k / i - 1) * 2; cout << (i - 1) * (k / i - 1) * 2; } else if (k / i <= 2 * n) { ans += (i - 1) * (2 * n - k/i + 1) * 2; cout << (i - 1) * (2 * n - k / i + 1) * 2; } } else if (i <= 2 * n) { if (k / i <= n) { ans += (2 * n - i + 1) * (k / i - 1) * 2; cout << (2 * n - i + 1) * (k / i - 1) * 2; } else if (k / i <= 2 * n) { ans += (2 * n - i + 1) * (2 * n - k / i + 1) * 2; cout << (2 * n - i + 1) * (2 * n - k / i + 1) * 2; } } cout << endl; } } cout << ans << endl; getchar(); getchar(); }