結果
| 問題 | No.558 575検出するやつ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-01 10:13:20 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 2,000 ms |
| コード長 | 477 bytes |
| コンパイル時間 | 2,015 ms |
| コンパイル使用メモリ | 106,332 KB |
| 実行使用メモリ | 26,040 KB |
| 最終ジャッジ日時 | 2025-12-01 10:13:24 |
| 合計ジャッジ時間 | 2,228 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 15 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
public class Program
{
public static void Main()
{
//int num = int.Parse(Console.ReadLine() ?? string.Empty);
//string[] str = (Console.ReadLine() ?? string.Empty).Trim().Split(' ');
string str = Console.ReadLine() ?? string.Empty;
bool moji = str.Contains("575");
if (moji)
{
Console.WriteLine("YES");
}
else
{
Console.WriteLine("NO");
}
}
}