結果

問題 No.591 (^o^)/
ユーザー fujitafujita
提出日時 2023-05-08 10:08:49
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 13,078 ms
コンパイル使用メモリ 142,068 KB
実行使用メモリ 157,524 KB
最終ジャッジ日時 2023-08-16 14:54:15
合計ジャッジ時間 14,420 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
26,140 KB
testcase_01 AC 39 ms
25,964 KB
testcase_02 AC 40 ms
27,796 KB
testcase_03 AC 39 ms
25,976 KB
testcase_04 AC 38 ms
25,788 KB
testcase_05 AC 38 ms
26,028 KB
testcase_06 AC 38 ms
27,848 KB
testcase_07 AC 39 ms
25,908 KB
testcase_08 AC 38 ms
26,012 KB
testcase_09 AC 38 ms
157,524 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  Determining projects to restore...
  Restored /home/judge/data/code/main.csproj (in 146 ms).
.NET 向け Microsoft (R) Build Engine バージョン 17.0.0-preview-21470-01+cb055d28f
Copyright (C) Microsoft Corporation.All rights reserved.

  プレビュー版の .NET を使用しています。https://aka.ms/dotnet-core-preview をご覧ください
  main -> /home/judge/data/code/bin/Release/net6.0/main.dll
  main -> /home/judge/data/code/bin/Release/net6.0/publish/

ソースコード

diff #

using System.Collections.Generic;
using System;
using System.Linq;
using System.Drawing;


namespace yukicoder
{
    class Program
    {

        static void Main(string[] args)//未完成
        {


            string T = Console.ReadLine();
            string T2 = Console.ReadLine();

            Console.WriteLine("(" + T + T2 + T + ")/");
        }
    }
}
0