結果
問題 | No.2124 Guess the Permutation |
ユーザー | mobchan |
提出日時 | 2023-05-03 02:00:19 |
言語 | C# (.NET 8.0.203) |
結果 |
AC
|
実行時間 | 94 ms / 2,000 ms |
コード長 | 836 bytes |
コンパイル時間 | 18,055 ms |
コンパイル使用メモリ | 166,212 KB |
実行使用メモリ | 46,936 KB |
平均クエリ数 | 374.60 |
最終ジャッジ日時 | 2024-05-01 09:02:42 |
合計ジャッジ時間 | 17,608 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 71 ms
46,416 KB |
testcase_01 | AC | 63 ms
46,808 KB |
testcase_02 | AC | 66 ms
46,524 KB |
testcase_03 | AC | 63 ms
46,552 KB |
testcase_04 | AC | 83 ms
46,780 KB |
testcase_05 | AC | 67 ms
46,528 KB |
testcase_06 | AC | 79 ms
46,264 KB |
testcase_07 | AC | 94 ms
46,808 KB |
testcase_08 | AC | 94 ms
46,936 KB |
testcase_09 | AC | 92 ms
46,936 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (102 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/
ソースコード
using System; using System.Collections.Generic; using System.Linq; class Program { static void Main(string[] args) { var N = int.Parse(Console.ReadLine()); var total = 0; for (int i = 1; i <= N; i++) { total += i; } var list = new List<int>(); for (int i = 1; i < N - 1; i++) { Console.WriteLine("? {0} {1}", i + 1, N); var input = int.Parse(Console.ReadLine()); list.Add(total - input); total = input; } { Console.WriteLine("? {0} {1}", N - 2, N - 1); var input = int.Parse(Console.ReadLine()); list.Add(input - list[N - 3]); list.Add(total - list[N - 2]); } Console.WriteLine("! {0}", String.Join(" ", list)); } }