結果

問題 No.700 LOVE
ユーザー NoNo
提出日時 2018-06-18 01:11:24
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 442 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 104,120 KB
実行使用メモリ 24,692 KB
最終ジャッジ日時 2023-09-13 06:34:22
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
20,504 KB
testcase_01 AC 51 ms
22,544 KB
testcase_02 AC 51 ms
22,536 KB
testcase_03 AC 51 ms
20,476 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 50 ms
18,508 KB
testcase_07 AC 53 ms
20,656 KB
testcase_08 WA -
testcase_09 AC 52 ms
20,516 KB
testcase_10 AC 52 ms
22,544 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 50 ms
18,548 KB
testcase_15 AC 51 ms
20,500 KB
testcase_16 AC 51 ms
20,644 KB
testcase_17 WA -
testcase_18 AC 51 ms
20,512 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = Console.ReadLine().Split()[0];
            for (int i = 0; i < 2; i++)
            {
                if (Console.ReadLine().Contains("LOVE"))
                {
                    Console.WriteLine("YES");
                    return;
                }
            }
            Console.WriteLine("NO");
        }
    }
}
0