結果
問題 | No.1132 凸凹 |
ユーザー | firiexp |
提出日時 | 2020-08-22 02:55:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 706 bytes |
コンパイル時間 | 893 ms |
コンパイル使用メモリ | 99,704 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 06:40:51 |
合計ジャッジ時間 | 1,722 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 1 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:28:11: warning: 'mx' may be used uninitialized [-Wmaybe-uninitialized] 28 | printf("%lld %lld %lld %lld\n", M, Mx, m, mx); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:22:39: note: 'mx' was declared here 22 | ll M = -INF<ll>, m = INF<ll>, Mx, mx; | ^~ main.cpp:28:11: warning: 'Mx' may be used uninitialized [-Wmaybe-uninitialized] 28 | printf("%lld %lld %lld %lld\n", M, Mx, m, mx); | ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:22:35: note: 'Mx' was declared here 22 | ll M = -INF<ll>, m = INF<ll>, Mx, mx; | ^~
ソースコード
#include <iostream> #include <algorithm> #include <map> #include <set> #include <queue> #include <stack> #include <numeric> #include <bitset> #include <cmath> static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using u64 = unsigned long long; using namespace std; template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208; int main() { ll a, b, c, d, p, q; cin >> a >> b >> c >> d >> p >> q; ll M = -INF<ll>, m = INF<ll>, Mx, mx; for (int i = p; i <= q; ++i) { ll val = a*i*i*i+b*i*i+c*i+d; if(M < val) M = val, Mx = i; if(m > val) m = val, mx = i; } printf("%lld %lld %lld %lld\n", M, Mx, m, mx); return 0; }