結果
| 問題 | No.3518 座標当てゲーム |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-05-01 21:30:00 |
| 言語 | C# (.NET 10.0.201) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 340 bytes |
| 記録 | |
| コンパイル時間 | 7,696 ms |
| コンパイル使用メモリ | 174,412 KB |
| 実行使用メモリ | 51,392 KB |
| 平均クエリ数 | 2.00 |
| 最終ジャッジ日時 | 2026-05-01 21:30:15 |
| 合計ジャッジ時間 | 15,019 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 20 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (92 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
#nullable enable
#region
var (_input, _iter) = (Array.Empty<string>(), 0);
T I<T>() where T : IParsable<T>
{
while (_iter >= _input.Length) (_input, _iter) = (Console.ReadLine()!.Trim().Split(' '), 0);
return T.Parse(_input[_iter++], null);
}
#endregion
Console.WriteLine("? 1000");
var y = I<int>();
Console.WriteLine(1000 - y);