結果
問題 | No.376 立方体のN等分 (2) |
ユーザー | fine |
提出日時 | 2016-06-05 02:03:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 798 bytes |
コンパイル時間 | 2,040 ms |
コンパイル使用メモリ | 173,900 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 13:53:56 |
合計ジャッジ時間 | 5,461 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | RE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
5,248 KB |
testcase_36 | AC | 2 ms
5,248 KB |
testcase_37 | AC | 2 ms
5,248 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef unsigned long long ull; vector<ull> divisor(int n) { vector<ull> res; for (int i = 1; i * i <= n; i++) { if (n % i == 0) { res.emplace_back(i); res.emplace_back(n / i); } } sort(res.begin(), res.end()); return res; } int main() { cin.tie(0); ios::sync_with_stdio(false); ull n; cin >> n; ull tmax = n - 1; ull tmin = tmax; vector<ull> d = divisor(n); for (int i = 0; d[i] * d[i] * d[i] <= n; i++) { ull tmp = n / d[i]; for (int j = i; d[j] * d[j] <= tmp; j++) { if (tmp % d[j]) continue; tmin = min(tmin, d[i] + d[j] + tmp / d[j] - 3); } } cout << tmin << " " << tmax << "\n"; return 0; }