結果
問題 | No.375 立方体のN等分 (1) |
ユーザー | sekiya9311 |
提出日時 | 2016-06-05 01:17:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,686 bytes |
コンパイル時間 | 1,086 ms |
コンパイル使用メモリ | 113,348 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 13:30:31 |
合計ジャッジ時間 | 9,462 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 126 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | AC | 266 ms
5,248 KB |
testcase_24 | AC | 133 ms
5,248 KB |
testcase_25 | WA | - |
testcase_26 | AC | 130 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 131 ms
5,248 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include <iostream> #include <string> #include <queue> #include <stack> #include <algorithm> #include <list> #include <vector> #include <complex> #include <utility> #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <bitset> #include <ctime> #include <map> #include <unordered_map> #include <set> #include <unordered_set> #include <cassert> #include <cstddef> #include <iomanip> #include <numeric> #include <tuple> #include <random> #define REP(i,n) for(long (i)=0;(i)<(n);(i)++) #define FOR(i,a,b) for(long (i)=(a);(i)<(b);(i)++) #define RREP(i,a) for(long (i)=(a)-1;(i)>=0;(i)--) #define FORR(i,a,b) for(long (i)=(a)-1;(i)>=(b);(i)--) #define MOD 1000000007 #define PI acos(-1.0) #define DEBUG(C) cout<<C<<endl; #define PII pair<int,int> #define PLL pair<long,long> #define ALL(a) (a).begin(),(a).end() #define SORT(a) sort((a).begin(),(a).end()) #define RSORT(a) sort((a).begin(),(a).end(),greater<int>()) typedef long long LL; typedef unsigned long long ULL; using namespace std; bool isPrime(LL a){ if(a<2) return false; for(LL i=2;i*i<=a;i++){ if(a%i==0) return false; } return true; } int main(void){ LL N; cin>>N; vector<LL> va,vb,vc; LL tmin=1e11+7; for(LL i=2;i*i*i<=N;i++){ LL nbufi=N,a,b,c; if(isPrime(i)&&nbufi%i==0){ a=i; nbufi/=a; for(LL j=2;j*j<=N;j++){ LL nbufj=nbufi; if(isPrime(j)&&nbufj%j==0){ b=j; nbufj/=b; c=nbufj; va.push_back(a); vb.push_back(b); vc.push_back(c); } } } } for(LL i=0;i<va.size();i++){ //cout<<va[i]<<" "<<vb[i]<<" "<<vc[i]<<endl; tmin=min(tmin,(LL)va[i]+vb[i]+vc[i]); } tmin-=3; cout<<tmin<<" "<<N-1<<endl; }