結果

問題 No.375 立方体のN等分 (1)
ユーザー sio_puyosio_puyo
提出日時 2016-06-04 23:16:01
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 350 bytes
コンパイル時間 1,468 ms
コンパイル使用メモリ 158,876 KB
実行使用メモリ 10,020 KB
最終ジャッジ日時 2024-10-08 09:32:43
合計ジャッジ時間 49,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,698 ms
5,248 KB
testcase_01 AC 1,246 ms
5,248 KB
testcase_02 AC 3,173 ms
5,248 KB
testcase_03 AC 1,732 ms
5,248 KB
testcase_04 AC 1,711 ms
5,248 KB
testcase_05 AC 1,848 ms
5,248 KB
testcase_06 AC 1,172 ms
5,248 KB
testcase_07 AC 2,010 ms
5,248 KB
testcase_08 AC 4,457 ms
5,248 KB
testcase_09 AC 1,221 ms
5,248 KB
testcase_10 AC 2,310 ms
5,248 KB
testcase_11 AC 1,638 ms
5,248 KB
testcase_12 AC 2,189 ms
5,248 KB
testcase_13 AC 2,036 ms
5,248 KB
testcase_14 TLE -
testcase_15 AC 2,307 ms
5,248 KB
testcase_16 AC 1,810 ms
5,248 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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