結果
| 問題 | No.932 解法破綻!高橋君 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-01-02 22:57:21 |
| 言語 | C# (.NET 10.0.101) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 702 bytes |
| 記録 | |
| コンパイル時間 | 10,262 ms |
| コンパイル使用メモリ | 161,480 KB |
| 実行使用メモリ | 196,608 KB |
| 最終ジャッジ日時 | 2026-01-02 22:57:40 |
| 合計ジャッジ時間 | 13,135 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 MLE * 1 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (129 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
static int NN => int.Parse(ReadLine());
static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
public static void Main()
{
Solve();
}
static void Solve()
{
var s = ReadLine().Split(',');
for (var i = 0; i < s.Length; ++i)
{
if (s[i] != "AC")
{
WriteLine("Failed...");
return;
}
}
WriteLine("Done!");
}
}