結果
| 問題 | No.1721 [Cherry 3rd Tune N] 麗しきNumber |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-07-27 16:46:09 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
AC
|
| 実行時間 | 71 ms / 2,000 ms |
| コード長 | 346 bytes |
| 記録 | |
| コンパイル時間 | 6,224 ms |
| コンパイル使用メモリ | 171,144 KB |
| 実行使用メモリ | 190,728 KB |
| 最終ジャッジ日時 | 2026-03-31 18:51:51 |
| 合計ジャッジ時間 | 8,878 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (88 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
var inp = Console.ReadLine();
if(inp.Contains("4") && inp.Contains("6"))
{
Console.WriteLine("Beautiful");
}
else
{
Console.WriteLine("...");
}
}
}