結果
| 問題 | No.1721 [Cherry 3rd Tune N] 麗しきNumber |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2021-10-29 21:44:44 |
| 言語 | C# (.NET 10.0.400 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 68 ms / 2,000 ms |
| + 997µs | |
| コード長 | 475 bytes |
| 記録 | |
| コンパイル時間 | 5,208 ms |
| コンパイル使用メモリ | 172,616 KB |
| 実行使用メモリ | 29,184 KB |
| 最終ジャッジ日時 | 2026-09-11 12:44:50 |
| 合計ジャッジ時間 | 8,409 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (177 ミリ秒)。 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 static System.Console;
using System.Linq;
class yuki320
{
static int NN => int.Parse(ReadLine());
static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
static int[][] NArr(int n) => Enumerable.Repeat(0, n).Select(_ => NList).ToArray();
static void Main()
{
var n = ReadLine();
WriteLine(n.Contains('4') && n.Contains('6') ? "Beautiful" : "...");
}
}