結果

問題 No.376 立方体のN等分 (2)
ユーザー itezpaceitezpace
提出日時 2016-10-08 07:53:46
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 913 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 65,092 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-11-21 20:25:21
合計ジャッジ時間 40,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
8,448 KB
testcase_01 AC 2 ms
8,448 KB
testcase_02 AC 15 ms
8,320 KB
testcase_03 AC 312 ms
8,576 KB
testcase_04 AC 114 ms
8,320 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 TLE -
testcase_11 AC 53 ms
5,248 KB
testcase_12 AC 10 ms
5,248 KB
testcase_13 AC 72 ms
5,248 KB
testcase_14 AC 79 ms
5,248 KB
testcase_15 AC 88 ms
5,248 KB
testcase_16 TLE -
testcase_17 AC 12 ms
5,248 KB
testcase_18 AC 101 ms
5,248 KB
testcase_19 AC 22 ms
5,248 KB
testcase_20 AC 106 ms
5,248 KB
testcase_21 TLE -
testcase_22 AC 12 ms
5,248 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 13 ms
5,248 KB
testcase_26 TLE -
testcase_27 AC 116 ms
5,248 KB
testcase_28 AC 14 ms
5,248 KB
testcase_29 AC 117 ms
5,248 KB
testcase_30 AC 14 ms
5,248 KB
testcase_31 AC 116 ms
5,248 KB
testcase_32 AC 87 ms
5,248 KB
testcase_33 AC 117 ms
5,248 KB
testcase_34 AC 117 ms
5,248 KB
testcase_35 AC 116 ms
5,248 KB
testcase_36 AC 116 ms
5,248 KB
testcase_37 AC 117 ms
5,248 KB
testcase_38 AC 116 ms
5,248 KB
testcase_39 AC 23 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
int main(){
  ll N;cin>>N;
  ll T_MIN=N-1,T_MAX=N-1;
  vector<ll> v;
  ll N2=N;
  for(ll i=2;i*i<=N;++i){
    while(1){
      if(N2==1) break;
      if(N2%i==0){
        N2/=i;
        v.push_back(i);
      } else {
        break;
      }
    }
  }
  if(N2!=1) v.push_back(N2);
  cerr<<endl;
  if(v.size()==1){
    //
  } else if(v.size()==2){
    ll a=v[0];
    ll b=v[1];
    T_MIN=a-1+b-1;
  } else {
    vector<ll> v2=v;
    do{
    ll a=1;
    for(int i=0;i<v2.size()-2;++i){
      a*=v2[i];
      ll b=1;
      for(int j=i+1;j<v2.size()-1;++j){
        b*=v2[j];
        ll c=1;
        for(int k=j+1;k<v2.size();++k){
          c*=v2[k];
        }
        ll s=a+b+c;
        if(s-3<T_MIN) T_MIN=s-3;
      }
    }
  } while(next_permutation(v2.begin(),v2.end()));
  }
  cout<<T_MIN<<" "<<T_MAX<<endl;
}
0