結果
| 問題 | No.932 解法破綻!高橋君 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-12-04 09:27:29 |
| 言語 | C# (.NET 8.0.404) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 745 bytes |
| 記録 | |
| コンパイル時間 | 10,341 ms |
| コンパイル使用メモリ | 168,840 KB |
| 実行使用メモリ | 187,760 KB |
| 最終ジャッジ日時 | 2025-12-04 09:27:41 |
| 合計ジャッジ時間 | 10,107 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 WA * 1 MLE * 1 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (104 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System.Numerics;
public class Program
{
public static void Main()
{
//Biginteger num =BigInteger.Parse(Console.ReadLine() ?? string.Empty);
//string[] str = (Console.ReadLine() ?? string.Empty).Trim().Split(' ');
string str = Console.ReadLine() ?? string.Empty;
string ac = "";
for (int i = 0; i < str.Length; i++)
{
if (str[i] != ',')
{
ac += str[i];
}
else
{
if(ac != "AC")
{
Console.WriteLine("Failed...");
return;
}
ac = "";
}
}
Console.WriteLine("Done!");
}
}