結果

問題 No.700 LOVE
ユーザー sayuen0sayuen0
提出日時 2018-06-17 14:58:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 3,177 ms
コンパイル使用メモリ 79,176 KB
実行使用メモリ 41,780 KB
最終ジャッジ日時 2024-07-22 23:20:30
合計ジャッジ時間 5,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,388 KB
testcase_01 AC 128 ms
41,300 KB
testcase_02 AC 120 ms
41,180 KB
testcase_03 AC 131 ms
41,404 KB
testcase_04 AC 132 ms
41,428 KB
testcase_05 AC 136 ms
41,456 KB
testcase_06 AC 130 ms
41,532 KB
testcase_07 AC 115 ms
41,392 KB
testcase_08 AC 131 ms
41,568 KB
testcase_09 AC 127 ms
41,336 KB
testcase_10 AC 135 ms
41,720 KB
testcase_11 AC 141 ms
41,460 KB
testcase_12 AC 142 ms
41,600 KB
testcase_13 AC 141 ms
41,780 KB
testcase_14 AC 142 ms
41,612 KB
testcase_15 AC 141 ms
41,188 KB
testcase_16 AC 141 ms
41,316 KB
testcase_17 AC 142 ms
41,400 KB
testcase_18 AC 141 ms
41,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        boolean isLove =false;
        for(int i = 0; i<n ;i++){
            String s = sc.next();
            if(s.contains("LOVE")){
                isLove = true;
            }
        }
        if(isLove){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
        
    }
}
0