結果

問題 No.2049 POP
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-03-08 19:36:00
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 6,374 ms
コンパイル使用メモリ 164,900 KB
実行使用メモリ 182,784 KB
最終ジャッジ日時 2024-09-18 02:38:58
合計ジャッジ時間 7,665 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
28,672 KB
testcase_01 AC 41 ms
28,264 KB
testcase_02 AC 40 ms
28,260 KB
testcase_03 AC 41 ms
28,800 KB
testcase_04 AC 42 ms
28,928 KB
testcase_05 AC 41 ms
29,044 KB
testcase_06 AC 40 ms
28,800 KB
testcase_07 AC 40 ms
28,260 KB
testcase_08 AC 40 ms
28,288 KB
testcase_09 AC 40 ms
28,800 KB
testcase_10 AC 40 ms
28,800 KB
testcase_11 AC 41 ms
182,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (83 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/

ソースコード

diff #

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

class Scanner
{
    string[] s;
    int i;
    char[] cs = new char[] { ' ' };
    public Scanner()
    {
        s = new string[0];
        i = 0;
    }

    public string Next()
    {
        if (i < s.Length) return s[i++];
        string st = Console.ReadLine();
        while (st == "") st = Console.ReadLine();
        s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
        if (s.Length == 0) return Next();
        i = 0;
        return s[i++];
    }

    public int NextInt()
    {
        return int.Parse(Next());
    }

    public long NextLong()
    {
        return long.Parse(Next());
    }
}

class Program
{

    static void Main(string[] args)
    {
        // Comment

        var scanner = new Scanner();
        int N = scanner.NextInt();
        string S = scanner.Next();

        string T = S.Substring(1,N-2);
        Console.WriteLine(T);

    }
}
0