結果
問題 | No.375 立方体のN等分 (1) |
ユーザー | Bantako |
提出日時 | 2017-08-11 20:15:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 509 bytes |
コンパイル時間 | 1,589 ms |
コンパイル使用メモリ | 166,024 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 20:44:23 |
合計ジャッジ時間 | 2,595 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | WA | - |
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 6 | main(){ | ^~~~ main.cpp: In function 'int main()': main.cpp:23:22: warning: 'A[2]' may be used uninitialized [-Wmaybe-uninitialized] 23 | cout << A[0]+A[1]+A[2]-3 << " " << N-1 << endl; | ~~~~~~~~~^~~~~ main.cpp:7:10: note: 'A[2]' was declared here 7 | ll N,A[3]; | ^ main.cpp:17:17: warning: 'A[1]' may be used uninitialized [-Wmaybe-uninitialized] 17 | if(A[1] % i == 0){ | ~~~~~^~~ main.cpp:7:10: note: 'A[1]' was declared here 7 | ll N,A[3]; | ^ main.cpp:23:17: warning: 'A[0]' may be used uninitialized [-Wmaybe-uninitialized] 23 | cout << A[0]+A[1]+A[2]-3 << " " << N-1 << endl; | ~~~~^~~~~ main.cpp:7:10: note: 'A[0]' was declared here 7 | ll N,A[3]; | ^
ソースコード
#include<bits/stdc++.h> typedef long long ll; using namespace std; int INF = 1e9; int MOD = 1e9+7; main(){ ll N,A[3]; cin >> N; for(int i = (int)(pow(N,1./3)+1);i >= 1;i--){ if(N % i == 0){ A[0] = i; A[1] = N / i; break; } } for(int i = (int)(pow(N,1./3)+1);i >= 1;i--){ if(A[1] % i == 0){ A[2] = i; A[1] = A[1] / i; break; } } cout << A[0]+A[1]+A[2]-3 << " " << N-1 << endl; }