結果
問題 | No.964 2020 |
ユーザー | ccc |
提出日時 | 2022-09-02 16:28:33 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 51 ms / 2,020 ms |
コード長 | 697 bytes |
コンパイル時間 | 8,597 ms |
コンパイル使用メモリ | 167,148 KB |
実行使用メモリ | 185,196 KB |
最終ジャッジ日時 | 2024-11-15 21:17:06 |
合計ジャッジ時間 | 9,818 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
28,800 KB |
testcase_01 | AC | 51 ms
28,540 KB |
testcase_02 | AC | 51 ms
28,928 KB |
testcase_03 | AC | 51 ms
29,056 KB |
testcase_04 | AC | 51 ms
28,672 KB |
testcase_05 | AC | 51 ms
28,928 KB |
testcase_06 | AC | 51 ms
28,800 KB |
testcase_07 | AC | 50 ms
29,056 KB |
testcase_08 | AC | 51 ms
28,800 KB |
testcase_09 | AC | 51 ms
185,196 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (92 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() { int inputNumber = int.Parse(Console.ReadLine()); if (inputNumber<=1) { Console.WriteLine((1).ToString()); return; } string outputString = string.Empty; for(int i=0;i<inputNumber;++i) { for(int j=inputNumber;j>0;) { outputString += (--j).ToString(); } } Console.WriteLine(outputString); return; } }