結果

問題 No.418 ミンミンゼミ
ユーザー FF256grhyFF256grhy
提出日時 2016-09-09 22:22:42
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 662 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 22,272 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-16 01:11:37
合計ジャッジ時間 879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 25
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         scanf("%s", s);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <cstdio>

#define FOR( i, l, r) for(int i = (l)    ; i <  (r); i++)
#define FOR1(i, l, r) for(int i = (l)    ; i <= (r); i++)
#define REV( i, l, r) for(int i = (r) - 1; i >= (l); i--)
#define REV1(i, l, r) for(int i = (r)    ; i >= (l); i--)
#define INC( i, n) FOR( i, 0, n)
#define INC1(i, n) FOR1(i, 1, n)
#define DEC( i, n) REV( i, 0, n)
#define DEC1(i, n) REV1(i, 1, n)

typedef long long   signed int LL;
typedef long long unsigned int LU;

// ---- ----

char s[101];

int main() {
	scanf("%s", s);
	
	int len = 0;
	while(s[len] != '\0') { len++; }
	
	int ans = 0;
	INC(i, len) { if(s[i] == 'n') { ans++; } }
	
	printf("%d\n", ans);
	
	return 0;
}
0