結果

問題 No.700 LOVE
ユーザー ixTL255ixTL255
提出日時 2018-07-05 23:07:42
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 3,315 ms
コンパイル使用メモリ 102,124 KB
実行使用メモリ 22,572 KB
最終ジャッジ日時 2023-09-30 05:27:49
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
20,376 KB
testcase_01 AC 43 ms
22,492 KB
testcase_02 AC 44 ms
22,572 KB
testcase_03 AC 44 ms
20,516 KB
testcase_04 AC 47 ms
22,492 KB
testcase_05 AC 46 ms
22,476 KB
testcase_06 AC 44 ms
20,452 KB
testcase_07 AC 44 ms
20,524 KB
testcase_08 AC 43 ms
22,496 KB
testcase_09 AC 44 ms
22,564 KB
testcase_10 AC 45 ms
20,512 KB
testcase_11 AC 47 ms
22,428 KB
testcase_12 AC 47 ms
20,452 KB
testcase_13 AC 46 ms
18,556 KB
testcase_14 AC 45 ms
20,592 KB
testcase_15 AC 44 ms
20,672 KB
testcase_16 AC 46 ms
22,476 KB
testcase_17 AC 44 ms
20,440 KB
testcase_18 AC 43 ms
20,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Yuki700
{
	public static void Main()
	{
		Console.ReadLine();
		string s;

		while((s = Console.ReadLine()) != null)
		{
			if(s.Contains("LOVE"))
			{
				Console.WriteLine("YES");
				return;
			}
		}
		Console.WriteLine("NO");
	}
}
0