結果
問題 | No.73 helloworld |
ユーザー | hotpepsi |
提出日時 | 2015-07-29 22:59:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 450 ms |
コンパイル使用メモリ | 55,916 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-17 22:27:19 |
合計ジャッジ時間 | 1,135 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> using namespace std; typedef long long LL; LL calc_l(LL n) { LL cnt = 0; for (LL a = 2; a < n; ++a) { LL t = (a * (a - 1) / 2) * (n - a); cnt = max(cnt, t); } return cnt; } int main(int argc, char *argv[]) { LL cnt[256] = {}; for (int i = 'a'; i <= 'z'; ++i) { cin >> cnt[i]; } LL ans = cnt['h'] * cnt['e'] * calc_l(cnt['l']); LL o = cnt['o']; ans *= (o / 2) * (o - o / 2); ans *= cnt['r'] * cnt['w']; cout << ans << endl; return 0; }