結果
問題 | No.8020 サンシャイン◯崎 |
ユーザー | kotatsugame |
提出日時 | 2017-03-31 22:23:29 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 1,000 ms |
コード長 | 352 bytes |
コンパイル時間 | 604 ms |
コンパイル使用メモリ | 64,144 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-23 13:49:24 |
合計ジャッジ時間 | 1,335 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 4 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int y,e,a,h,b; main() { string s;cin>>s; for(int i=0;i<s.size();i++) { switch(s[i]){ case 'Y': y++; break; case 'E': e++; break; case 'A': a++; break; case 'H': h++; break; case '!': b++; break; } } cout<<y<<" "<<e<<" "<<a<<" "<<h<<" "<<b<<endl; }