結果

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

ソースコード

diff #

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

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