結果
問題 | No.73 helloworld |
ユーザー | evawenis |
提出日時 | 2020-06-17 15:56:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 546 bytes |
コンパイル時間 | 2,044 ms |
コンパイル使用メモリ | 210,096 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 12:15:30 |
合計ジャッジ時間 | 2,813 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ cin.tie(0),ios::sync_with_stdio(false); map<char,int>m; for(char c='a';c<='z';++c){ int num; cin>>num; m[c]=num; } string s="helowrd"s; int64_t ans=1; for(auto&&i:s){ if(i=='l'){ if(m.at(i)<3)ans*=0; else{ int64_t mx=0; for(int j=m.at(i)-1,base=m.at(i);j>=2;--j){ mx=max(mx,1L*j*(j-1)/2*(base-j)); } ans*=mx; } } else if(i=='o'){ int num=m.at(i); int oo=(num+1)/2,o=num/2; ans*=oo*o; } else ans*=m.at(i); } cout<<ans<<"\n"s; }