結果

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

ソースコード

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 )    
    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