結果
| 問題 | No.1672 404 Not Found |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-12-28 20:23:02 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
AC
|
| 実行時間 | 70 ms / 1,000 ms |
| コード長 | 278 bytes |
| 記録 | |
| コンパイル時間 | 6,307 ms |
| コンパイル使用メモリ | 173,480 KB |
| 実行使用メモリ | 193,832 KB |
| 最終ジャッジ日時 | 2026-04-14 10:26:45 |
| 合計ジャッジ時間 | 7,927 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (84 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
using System;
class Program
{
static void Main()
{
int S = int.Parse(Console.ReadLine());
if (S >= 400 && S <= 599)
{
Console.WriteLine("Yes");
}
else
{
Console.WriteLine("No");
}
}
}