結果
| 問題 | No.3163 [Cherry 7th Tune N] Draft |
| コンテスト | |
| ユーザー |
bluemegane
|
| 提出日時 | 2025-05-31 06:52:37 |
| 言語 | C# (.NET 10.0.101) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 292 bytes |
| 記録 | |
| コンパイル時間 | 11,634 ms |
| コンパイル使用メモリ | 168,744 KB |
| 実行使用メモリ | 188,016 KB |
| 最終ジャッジ日時 | 2026-01-23 20:34:59 |
| 合計ジャッジ時間 | 10,067 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 7 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (127 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
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);
}
}
}
bluemegane