結果
問題 | No.418 ミンミンゼミ |
ユーザー |
|
提出日時 | 2019-12-15 01:56:50 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 263 bytes |
コンパイル時間 | 621 ms |
コンパイル使用メモリ | 73,852 KB |
最終ジャッジ日時 | 2025-01-08 11:36:19 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 25 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); string s; cin >> s; int ans=0; for(char c:s){ if(c=='n')ans++; } cout << ans << endl; }