結果
問題 | No.375 立方体のN等分 (1) |
ユーザー |
|
提出日時 | 2016-11-29 15:49:53 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 344 ms / 5,000 ms |
コード長 | 451 bytes |
コンパイル時間 | 1,511 ms |
コンパイル使用メモリ | 166,028 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 13:30:42 |
合計ジャッジ時間 | 10,341 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 32 |
ソースコード
#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; }