結果
| 問題 |
No.418 ミンミンゼミ
|
| コンテスト | |
| ユーザー |
Kurichan0806
|
| 提出日時 | 2017-11-01 14:51:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 292 bytes |
| コンパイル時間 | 640 ms |
| コンパイル使用メモリ | 74,536 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-16 02:29:33 |
| 合計ジャッジ時間 | 1,488 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 25 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <utility>
#include <iomanip>
using namespace std;
int main(void) {
int ans = 0;
string str;
cin >> str;
for (int i = 0; i < str.size(); i++) {
if (str[i] == 'n')
ans++;
}
cout << ans << endl;
}
Kurichan0806