結果

問題 No.376 立方体のN等分 (2)
ユーザー sio_puyosio_puyo
提出日時 2016-06-04 23:28:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 508 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 1,601 ms
コンパイル使用メモリ 159,476 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 21:45:00
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 34 ms
6,820 KB
testcase_03 AC 57 ms
6,820 KB
testcase_04 AC 508 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 10 ms
6,820 KB
testcase_09 AC 5 ms
6,820 KB
testcase_10 AC 47 ms
6,816 KB
testcase_11 AC 130 ms
6,816 KB
testcase_12 AC 24 ms
6,816 KB
testcase_13 AC 112 ms
6,820 KB
testcase_14 AC 159 ms
6,816 KB
testcase_15 AC 93 ms
6,820 KB
testcase_16 AC 286 ms
6,816 KB
testcase_17 AC 24 ms
6,816 KB
testcase_18 AC 105 ms
6,816 KB
testcase_19 AC 46 ms
6,816 KB
testcase_20 AC 137 ms
6,816 KB
testcase_21 AC 320 ms
6,820 KB
testcase_22 AC 10 ms
6,816 KB
testcase_23 AC 339 ms
6,816 KB
testcase_24 AC 342 ms
6,816 KB
testcase_25 AC 11 ms
6,816 KB
testcase_26 AC 355 ms
6,816 KB
testcase_27 AC 190 ms
6,816 KB
testcase_28 AC 10 ms
6,816 KB
testcase_29 AC 304 ms
6,816 KB
testcase_30 AC 16 ms
6,816 KB
testcase_31 AC 91 ms
6,816 KB
testcase_32 AC 16 ms
6,820 KB
testcase_33 AC 10 ms
6,820 KB
testcase_34 AC 61 ms
6,816 KB
testcase_35 AC 247 ms
6,820 KB
testcase_36 AC 113 ms
6,816 KB
testcase_37 AC 113 ms
6,816 KB
testcase_38 AC 264 ms
6,816 KB
testcase_39 AC 31 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
int main(){
  LL n;
  cin >> n;
  LL answer=n;
  for(LL a=46420;a>=1;--a){
    if(n%a) continue;
    LL b;
    for(b=a;a*b*b<=n;++b);
    for(;b>=a;--b){
      if(a+b+n/a/b-3>answer) break;
      if(n/a%b) continue;
      answer=min(answer,a+b+n/a/b-3);
    }
  }
  cout << answer << ' ' << n-1 << endl;
  return 0;
}
0