結果

問題 No.376 立方体のN等分 (2)
ユーザー 0w10w1
提出日時 2016-12-14 16:25:57
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 472 bytes
コンパイル時間 1,569 ms
コンパイル使用メモリ 166,160 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-30 07:25:56
合計ジャッジ時間 33,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 37 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;

signed main(){
  ll N; cin >> N;
  ll ans1 = N - 1;
  for( int i = 0; 1LL * ( i + 1 ) * ( i + 1 ) * ( i + 1 ) <= N; ++i ) if( N % ( i + 1 ) == 0 )
    for( int j = i; 1LL * ( i + 1 ) * ( j + 1 ) * ( j + 1 ) <= N; ++j )
      if( N % ( 1LL * ( i + 1 ) * ( j + 1 ) ) == 0 )
        ans1 = min( ans1, i + j + N / ( 1LL * ( i + 1 ) * ( j + 1 ) ) - 1 );
  cout << ans1 << " " << N - 1 << endl;
  return 0;
}
0