結果

問題 No.418 ミンミンゼミ
ユーザー ミドリムシ
提出日時 2017-10-13 23:50:54
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 166 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 54,004 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 11:50:55
合計ジャッジ時間 1,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
 
int main(){
	string S;
	cin >> S;
	int ans = 0;
	for(int i = 0; i < S.size(); i++){
		if(S[i] == 'n'){
			ans = 0;
		}
	}
}
0