結果
問題 | No.73 helloworld |
ユーザー | kpinkcat |
提出日時 | 2023-10-14 22:06:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 645 bytes |
コンパイル時間 | 993 ms |
コンパイル使用メモリ | 104,860 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 15:47:31 |
合計ジャッジ時間 | 1,797 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:30:18: warning: 'maxl' may be used uninitialized [-Wmaybe-uninitialized] 30 | cout << d*e*h*maxl*maxo*r*w << endl; | ~~~~~^~~~~ main.cpp:15:17: note: 'maxl' was declared here 15 | ll d, e, h, maxl, l, o, maxo, r, w, tmp; | ^~~~
ソースコード
#include<iostream> #include<iomanip> #include<string> #include<algorithm> #include<vector> #include<set> #include<list> #include<queue> #include<math.h> #include<bitset> using ll = long long; using namespace std; int main(){ ll d, e, h, maxl, l, o, maxo, r, w, tmp; vector<int> alph(26); for (int i = 0; i < 26; i++) cin >> alph[i]; d = alph[3]; e = alph[4]; h = alph[7]; l = alph[11]; o = alph[14]; r = alph[17]; w = alph[22]; maxo = o/2 * (o - o/2); for (int i = 2; i < l; i++){ tmp = i*(i-1)/2 * (l - i); maxl = max(maxl, tmp); } cout << d*e*h*maxl*maxo*r*w << endl; }