結果

問題 No.376 立方体のN等分 (2)
ユーザー sio_puyosio_puyo
提出日時 2016-06-04 23:20:15
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 321 bytes
コンパイル時間 1,439 ms
コンパイル使用メモリ 159,084 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-08 09:36:21
合計ジャッジ時間 27,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 370 ms
5,248 KB
testcase_03 AC 791 ms
5,248 KB
testcase_04 AC 528 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 11 ms
5,248 KB
testcase_09 AC 37 ms
5,248 KB
testcase_10 AC 653 ms
5,248 KB
testcase_11 AC 128 ms
5,248 KB
testcase_12 AC 317 ms
5,248 KB
testcase_13 AC 121 ms
5,248 KB
testcase_14 AC 157 ms
5,248 KB
testcase_15 AC 92 ms
5,248 KB
testcase_16 AC 4,139 ms
5,248 KB
testcase_17 AC 312 ms
5,248 KB
testcase_18 AC 104 ms
5,248 KB
testcase_19 AC 630 ms
5,248 KB
testcase_20 AC 136 ms
5,248 KB
testcase_21 AC 4,639 ms
5,248 KB
testcase_22 AC 110 ms
5,248 KB
testcase_23 AC 4,903 ms
6,820 KB
testcase_24 AC 4,938 ms
6,816 KB
testcase_25 AC 112 ms
6,816 KB
testcase_26 TLE -
testcase_27 AC 188 ms
6,816 KB
testcase_28 AC 110 ms
6,820 KB
testcase_29 AC 301 ms
6,816 KB
testcase_30 AC 192 ms
6,816 KB
testcase_31 AC 112 ms
6,816 KB
testcase_32 AC 189 ms
6,820 KB
testcase_33 AC 112 ms
6,816 KB
testcase_34 AC 112 ms
6,820 KB
testcase_35 AC 242 ms
6,820 KB
testcase_36 AC 112 ms
6,820 KB
testcase_37 AC 112 ms
6,824 KB
testcase_38 AC 261 ms
6,820 KB
testcase_39 AC 293 ms
6,820 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=1;a<46420;++a){
    if(n%a) continue;
    for(LL b=a;a*b*b<=n;++b){
      if(n/a%b) continue;
      answer=min(answer,a+b+n/a/b-3);
    }
  }
  cout << answer << ' ' << n-1 << endl;
  return 0;
}
0