結果
問題 | No.700 LOVE |
ユーザー | suppy193 |
提出日時 | 2023-09-09 21:34:16 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 349 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 20,864 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 14:03:50 |
合計ジャッジ時間 | 1,822 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 0 ms
5,376 KB |
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); | ^~~~~~~~~~~~~~
ソースコード
#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); 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; }