結果

問題 No.2124 Guess the Permutation
ユーザー kakel-sankakel-san
提出日時 2023-10-18 00:35:33
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 10,403 ms
コンパイル使用メモリ 167,420 KB
実行使用メモリ 46,552 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-17 21:37:20
合計ジャッジ時間 12,250 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
46,296 KB
testcase_01 AC 64 ms
46,036 KB
testcase_02 AC 61 ms
45,904 KB
testcase_03 AC 61 ms
46,424 KB
testcase_04 AC 63 ms
46,168 KB
testcase_05 AC 65 ms
46,296 KB
testcase_06 AC 82 ms
46,036 KB
testcase_07 AC 104 ms
46,032 KB
testcase_08 AC 101 ms
46,036 KB
testcase_09 AC 102 ms
46,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (79 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var ans = new int[n];
        var sum = n * (n + 1) / 2;
        var tmp = 0;
        for (var i = 1; i + 1 < n; ++i)
        {
            WriteLine($"? {i + 1} {n}");
            var s = NN;
            ans[i - 1] = sum - s - tmp;
            tmp += ans[i - 1];
        }
        WriteLine($"? 1 {n - 1}");
        ans[n - 1] = sum - NN;
        ans[n - 2] = sum - tmp - ans[n - 1];
        WriteLine($"! {string.Join(" ", ans)}");
    }
}
0