結果

問題 No.700 LOVE
ユーザー suppy193suppy193
提出日時 2023-09-09 21:31:57
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 371 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 20,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 14:01:39
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d%d", &n, &m);
      |         ^~~~~~~~~~~~~~~~~~~~~
main.c:13:25: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |                         scanf("%s", s);
      |                         ^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(void){
	
	int n, m;
	int i, j;
	char s[20];
	
	scanf("%d%d", &n, &m);
	
	if(m >= 4){
		for(j = 0;j < n;j++){
			scanf("%s", s);
			printf("%s\n", s);
			for(i = 0;i < m - 4;i++){
				if(s[i] == 'L' && s[i + 1] == 'O' && s[i + 2] == 'V' && s[i + 3] == 'E'){
					printf("Yes\n");
					return 0;
				}
			}

		}
	}
	printf("No\n");

	return 0;
}
0