結果
問題 | No.375 立方体のN等分 (1) |
ユーザー | mayoko_ |
提出日時 | 2016-06-04 23:11:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,261 bytes |
コンパイル時間 | 1,019 ms |
コンパイル使用メモリ | 102,344 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 09:21:49 |
合計ジャッジ時間 | 2,464 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 3 ms
5,248 KB |
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 | AC | 5 ms
5,248 KB |
testcase_21 | AC | 4 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | AC | 5 ms
5,248 KB |
testcase_24 | AC | 5 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | AC | 5 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | AC | 5 ms
5,248 KB |
testcase_29 | AC | 5 ms
5,248 KB |
testcase_30 | AC | 6 ms
5,248 KB |
testcase_31 | AC | 6 ms
5,248 KB |
testcase_32 | AC | 6 ms
5,248 KB |
testcase_33 | WA | - |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> //#include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> //#include<list> #include<queue> #include<deque> #include<algorithm> //#include<numeric> #include<utility> //#include<memory> #include<functional> #include<cassert> #include<set> #include<stack> #include<random> const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, -1, 0, 1}; using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> pii; int main() { cin.tie(0); ios::sync_with_stdio(false); ll N; cin >> N; vector<ll> div; for (ll i = 2; i*i <= N; i++) { if (N%i == 0) { div.push_back(i); if (i*i != N) div.push_back(N/i); } } int sz = div.size(); ll ans = N-1; for (int i = 0; i < sz; i++) { if (ans+3 <= 2*div[i]) break; for (int j = i; j < sz; j++) { ll tmp = div[i]*div[j]; if (N < tmp) break; if (N%tmp) continue; tmp = N/tmp; ans = min(ans, div[i]+div[j]+tmp-3); } } cout << ans << " " << N-1 << endl; return 0; }