結果

問題 No.3163 [Cherry 7th Tune N] Draft
ユーザー bluemegane
提出日時 2025-05-31 06:52:37
言語 C#
(.NET 8.0.404)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 9,097 ms
コンパイル使用メモリ 174,816 KB
実行使用メモリ 194,112 KB
最終ジャッジ日時 2025-05-31 06:52:48
合計ジャッジ時間 9,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other WA * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (143 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var T = int.Parse(Console.ReadLine().Trim());
        while (T-- > 0)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var a = Array.ConvertAll(line, int.Parse);
        }
    }
}
0