結果
問題 | No.73 helloworld |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-08-26 17:20:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 681 bytes |
コンパイル時間 | 413 ms |
コンパイル使用メモリ | 55,552 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-08 04:12:52 |
合計ジャッジ時間 | 1,031 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include <iostream> #include <cstdio> using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<(n);i++) int d[30]; int main(void){ rep(i, 26){ cin >> d[i]; } ll numd = d[3]; ll nume = d[4]; ll numh = d[7]; ll numl = d[11]; ll numo = d[14]; ll numr = d[17]; ll numw = d[22]; //num* c 1 ll sum = numd * nume * numh * numr * numw; //numl printf("sum%lld\n", sum); ll maxl = 0; for (int i = 2; i < numl; ++i){ ll tmp = (i * (i - 1) / 2) * (numl - i); maxl = max(maxl, tmp); } //numo ll maxo = 0; for (int i = 1; i < numo; ++i){ ll tmp = i * (numo - i); maxo = max(maxo, tmp); } sum *= (maxl * maxo); cout << sum << endl; return 0; }