結果
問題 | No.73 helloworld |
ユーザー | IL_msta |
提出日時 | 2015-06-29 11:42:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,329 bytes |
コンパイル時間 | 775 ms |
コンパイル使用メモリ | 84,344 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 02:05:43 |
合計ジャッジ時間 | 1,250 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <algorithm> #include <cmath> #include <string> #include <list> #include <queue> #include <vector> #include <complex> #include <set> ///////// #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define P(p) cout<<(p)<<endl; ///////// typedef long long LL; typedef long double LD; ///////// using namespace::std; ///////// int main(void){ std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed;// //cout << setprecision(6);// LL C[26]; rep(i,26){ cin>>C[i]; } LL ans = 1; LL ama = 0; LL big = -1; LL tbig = 0; if(C['d'-'a'] < 1){P(0);return 0;} else{ans *= C['d'-'a'];} if(C['e'-'a'] < 1){P(0);return 0;} else{ans *= C['e'-'a'];} if(C['h'-'a'] < 1){P(0);return 0;} else{ans *= C['h'-'a'];} if(C['r'-'a'] < 1){P(0);return 0;} else{ans *= C['r'-'a'];} if(C['w'-'a'] < 1){P(0);return 0;} else{ans *= C['w'-'a'];} //*99^4 if(C['o'-'a'] < 2){P(0);return 0;} else{ ama = C['o'-'a']-2; ans *= (1+ama/2)*(1+ama-ama/2); } //*2550 if(C['l'-'a'] < 3){P(0);return 0;} else{ ama = C['l'-'a'] - 3 ; for(int k=0;k<=ama;++k){ tbig = ((k+2)*(k+1)/2) * (ama-k+1); if(big == -1 || big < tbig){ big = tbig; } } ans *= big; } //*72963 P(ans); return 0; }