結果
| 問題 | No.2092 Conjugation |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-04-10 14:42:44 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 611 bytes |
| 記録 | |
| コンパイル時間 | 5,203 ms |
| コンパイル使用メモリ | 171,388 KB |
| 実行使用メモリ | 73,408 KB |
| 最終ジャッジ日時 | 2026-07-08 15:20:24 |
| 合計ジャッジ時間 | 19,080 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 TLE * 2 -- * 3 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (91 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
class Program
{
static void Main(string[] args)
{
int n = int.Parse(Console.ReadLine());
int [] list = Array.ConvertAll(Console.ReadLine().Split(' '), num => int.Parse(num));
int[] numList = new int[list[0]];
for(int i = 0; i < n; i++)
{
for(int j = 0; j < list[i]; j++)
{
numList[j]++;
}
}
foreach (var i in numList)
{
Console.Write(i + " ");
}
Console.WriteLine();
}
}
Maeda