結果
| 問題 |
No.418 ミンミンゼミ
|
| コンテスト | |
| ユーザー |
trineutron
|
| 提出日時 | 2020-04-09 16:42:08 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 5 ms / 1,000 ms |
| コード長 | 185 bytes |
| コンパイル時間 | 985 ms |
| コンパイル使用メモリ | 66,688 KB |
| 最終ジャッジ日時 | 2025-01-09 15:28:50 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 25 |
ソースコード
#include <iostream>
#include <string>
int main() {
std::string s;
std::cin >> s;
int ans = 0;
for (char c : s) if (c == 'm') ans++;
std::cout << ans << std::endl;
}
trineutron