結果

問題 No.700 LOVE
ユーザー NoNo
提出日時 2018-06-18 01:08:20
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 2,806 ms
コンパイル使用メモリ 103,448 KB
実行使用メモリ 24,724 KB
最終ジャッジ日時 2023-09-13 06:34:15
合計ジャッジ時間 4,441 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

using System;
using System.Text;
namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = Console.ReadLine().Split()[0];
            var sb = new StringBuilder();
            for (int i = 0; i < 2; i++)
            {
                sb.Append(Console.ReadLine());
            }
            Console.WriteLine(sb.ToString().Contains("LOVE") ? "YES" : "NO");
        }
    }
}
0