結果
問題 | No.964 2020 |
ユーザー | ccc |
提出日時 | 2022-09-02 16:03:38 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 439 bytes |
コンパイル時間 | 12,681 ms |
コンパイル使用メモリ | 169,100 KB |
実行使用メモリ | 185,276 KB |
最終ジャッジ日時 | 2024-11-15 21:01:19 |
合計ジャッジ時間 | 11,033 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
29,824 KB |
testcase_01 | AC | 55 ms
30,064 KB |
testcase_02 | AC | 54 ms
29,952 KB |
testcase_03 | AC | 54 ms
29,952 KB |
testcase_04 | AC | 54 ms
29,952 KB |
testcase_05 | AC | 53 ms
30,208 KB |
testcase_06 | AC | 54 ms
30,076 KB |
testcase_07 | AC | 55 ms
30,080 KB |
testcase_08 | AC | 55 ms
29,952 KB |
testcase_09 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (101 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
using System; using System.Linq; using System.Collections.Generic; using System.Text.RegularExpressions; class Program { static void Main() { var N = int.Parse(Console.ReadLine()); var _ = new List<int>(); for (int i = 1; i < N+1; i++) { for ( int j = 0; j < N; j++) { _.Add(i); } } Console.WriteLine(String.Join("",_)); } }