結果

問題 No.700 LOVE
ユーザー Mcpu3
提出日時 2018-06-16 13:18:04
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 1,260 ms
コンパイル使用メモリ 28,160 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-22 23:19:40
合計ジャッジ時間 985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>

int main(void)
{
	char s[50][51];
	int n, m, i;
	scanf("%d%d", &n, &m);
	m = 0;
	for (i = 0; i < n; i++) {
		scanf("%s", s[i]);
		if (strstr(s[i], "LOVE") != NULL) m++;
	}
	puts(m ? "YES" : "NO");
	return 0;
}
0