結果
問題 | No.1808 Fullgold Alchemist |
ユーザー | π |
提出日時 | 2022-01-14 23:16:28 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 764 bytes |
コンパイル時間 | 703 ms |
コンパイル使用メモリ | 78,496 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-20 14:17:27 |
合計ジャッジ時間 | 3,647 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
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 | AC | 2 ms
5,248 KB |
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 | WA | - |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:40:13: warning: 'nmin' may be used uninitialized [-Wmaybe-uninitialized] 40 | x += nmin / m; | ~~~~~^~~ main.cpp:7:18: note: 'nmin' was declared here 7 | int stock = 0, nmin; | ^~~~ main.cpp:40:5: warning: 'x' may be used uninitialized [-Wmaybe-uninitialized] 40 | x += nmin / m; | ~~^~~~~~~~~~~ main.cpp:6:7: note: 'x' was declared here 6 | int x; | ^
ソースコード
#include<iostream> int main() { int n, m; std::cin >> n >> m; int x; int stock = 0, nmin; for(int i = 0; i < n; ++i) { int a; std::cin >> a; int w = a / (m * (n - i)); a %= m * (n - i); if(i == 0) { x = w; nmin = a; } else { if(w * m < nmin) { nmin -= w * m; x += w; } else if(w * m >= nmin) { x += nmin / m; break; } if(a < nmin) { while(nmin - a > stock) { if(nmin == 0) { goto end; } else { --nmin; stock += i; } } stock -= nmin - a; a += nmin - a; } else { stock += a - nmin; } } } x += nmin / m; end: std::cout << x << '\n'; }