結果
| 問題 |
No.2268 NGワード回避
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-07-05 17:39:23 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 41 ms / 2,000 ms |
| コード長 | 761 bytes |
| コンパイル時間 | 3,015 ms |
| コンパイル使用メモリ | 114,936 KB |
| 実行使用メモリ | 33,424 KB |
| 最終ジャッジ日時 | 2024-07-19 11:52:34 |
| 合計ジャッジ時間 | 6,654 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 52 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
static int NN => int.Parse(ReadLine());
static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
public static void Main()
{
Solve();
}
static void Solve()
{
var n = NN;
var s = SList(n);
var r = new Random();
while (true)
{
var c = new char[n];
for (var i = 0; i < n; ++i) c[i] = (char)(r.Next(2) + 'a');
var cs = string.Concat(c);
if (!s.Contains(cs))
{
WriteLine(cs);
return;
}
}
}
}