結果
問題 | No.1291 小手調べ |
ユーザー | oreo |
提出日時 | 2020-11-22 15:12:08 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 1,068 bytes |
コンパイル時間 | 1,023 ms |
コンパイル使用メモリ | 110,764 KB |
実行使用メモリ | 25,848 KB |
最終ジャッジ日時 | 2024-07-23 16:32:06 |
合計ジャッジ時間 | 1,449 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,800 KB |
testcase_01 | AC | 24 ms
23,676 KB |
testcase_02 | AC | 24 ms
23,904 KB |
testcase_03 | AC | 24 ms
25,848 KB |
testcase_04 | AC | 23 ms
23,680 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Text; namespace yukiCoder { class MainClass { public static void Main(string[] args) { var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; Console.SetOut(sw); int N = int.Parse(Console.ReadLine()); int[] dN = new int[N]; for (int i = 0; i < N; i++) { dN[i] = int.Parse(Console.ReadLine()); } for (int j = 0; j < N; j++) { StringBuilder result = new StringBuilder(); if (dN[j] == 1) { result.Append("10"); } else { result.Append("9"); } for (int k = 1; k < dN[j]; k++) { result.Append("0"); } Console.WriteLine(result); } Console.Out.Flush(); } } }