結果

問題 No.376 立方体のN等分 (2)
ユーザー 0w10w1
提出日時 2016-12-13 13:50:43
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,016 KB
testcase_01 AC 2 ms
10,148 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 2 ms
10,024 KB
testcase_06 AC 2 ms
10,016 KB
testcase_07 AC 2 ms
10,016 KB
testcase_08 AC 503 ms
10,016 KB
testcase_09 AC 4,131 ms
10,020 KB
testcase_10 TLE -
testcase_11 TLE -
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 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
権限があれば一括ダウンロードができます

ソースコード

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