結果
問題 | No.375 立方体のN等分 (1) |
ユーザー | mogurocker |
提出日時 | 2017-10-29 18:15:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 707 bytes |
コンパイル時間 | 1,413 ms |
コンパイル使用メモリ | 157,760 KB |
実行使用メモリ | 163,008 KB |
最終ジャッジ日時 | 2024-11-22 05:25:08 |
合計ジャッジ時間 | 92,573 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
8,320 KB |
testcase_01 | AC | 2 ms
8,320 KB |
testcase_02 | TLE | - |
testcase_03 | AC | 2 ms
8,320 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | TLE | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | TLE | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i, n) for(int i = 0; i < (n); i++) #define FORR(x, arr) for(auto& x:arr) #define ITR(x, c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define MEM(a, x) memset(a, x, sizeof(a)) #define ALL(a) a.begin(), a.end() #define UNIQUE(a) a.erase(unique(ALL(a)), a.end()) typedef long long ll; typedef pair<int, int> P; ll n; int main(int argc, char const *argv[]) { ios_base::sync_with_stdio(false); cin >> n; ll mi=n-1, ma=n-1; if (n%2==0) { for (int i = 1; i*i <= n; i++) { if (n%i==0) { for (int j = 1; j*j <= n/i; j++) { if (n/i%j==0) mi = min(mi, i+j+n/i/j-3); } } } } cout << mi << " " << ma << endl; return 0; }