結果

問題 No.375 立方体のN等分 (1)
ユーザー BantakoBantako
提出日時 2017-08-11 21:06:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 5,000 ms
コード長 646 bytes
コンパイル時間 1,398 ms
コンパイル使用メモリ 166,228 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 20:44:32
合計ジャッジ時間 2,462 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 6 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 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 4 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 5 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 10 ms
5,248 KB
testcase_13 AC 10 ms
5,248 KB
testcase_14 AC 5 ms
5,248 KB
testcase_15 AC 6 ms
5,248 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 6 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 13 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 5 ms
5,248 KB
testcase_22 AC 6 ms
5,248 KB
testcase_23 AC 11 ms
5,248 KB
testcase_24 AC 8 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 6 ms
5,248 KB
testcase_27 AC 13 ms
5,248 KB
testcase_28 AC 7 ms
5,248 KB
testcase_29 AC 5 ms
5,248 KB
testcase_30 AC 10 ms
5,248 KB
testcase_31 AC 12 ms
5,248 KB
testcase_32 AC 8 ms
5,248 KB
testcase_33 AC 8 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
ll INF = 1e18;
int MOD = 1e9+7;
main(){
    ll N,A[3],cnt,mini = INF;
    cin >> N;
    for(ll i = ll(pow(N,0.5)+1);i >= 1;i--){
        if(N % i)continue;
        ll b = N / i,c = i;
        for(ll j = ll(pow(b,0.5)+1);j >= 1;j--){
            if(b % j == 0){
                mini = min(mini,c + b/j + j - 3);
                break;
            }
        }
        for(ll j = ll(pow(c,0.5)+1);j >= 1;j--){
            if(c % j == 0){
                mini = min(mini,b + c/j + j - 3);
                break;
            }
        }
    }
    cout << mini << " " << N-1 << endl;
}
0