結果

問題 No.282 おもりと天秤(2)
ユーザー りあんりあん
提出日時 2015-09-18 23:44:20
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 3,639 bytes
コンパイル時間 2,919 ms
コンパイル使用メモリ 107,476 KB
実行使用メモリ 37,068 KB
平均クエリ数 300.67
最終ジャッジ日時 2023-09-23 06:01:35
合計ジャッジ時間 16,437 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
36,704 KB
testcase_01 AC 428 ms
36,704 KB
testcase_02 AC 164 ms
37,068 KB
testcase_03 AC 116 ms
36,976 KB
testcase_04 AC 97 ms
34,548 KB
testcase_05 AC 261 ms
36,736 KB
testcase_06 AC 509 ms
36,424 KB
testcase_07 AC 98 ms
36,960 KB
testcase_08 AC 506 ms
36,296 KB
testcase_09 AC 82 ms
36,484 KB
testcase_10 RE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text;
using System.Numerics;

namespace Solver
{
    class Program
    {
        const int M = 1000000007;
        const double eps = 1e-9;
        static void Main()
        {
            var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
            var sc = new Scan();
            int n = sc.Int;
            var ans = new int[n];
            var c = new int[n];
            for (int i = 1; i <= n; i++)
            {
                for (int j = i + 1; j <= n; j++)
                {
                    sw.Write("? {0} {1}", i, j);
                    for (int k = 0; k < n - 1; k++)
                    {
                        sw.Write(" 0 0");
                    }
                    sw.WriteLine();
                    sw.Flush();
                    if (sc.Str[0] == '>')
                        ++c[i - 1];
                    else
                        ++c[j - 1];
                }
            }
            for (int i = 0; i < n; i++)
            {
                ans[c[i]] = i + 1; 
            }
            sw.Write("! ");
            sw.WriteLine(string.Join(" ", ans));
            sw.Flush();
        }
        static long pow(long a, long b)
        {
            if (b == 0)
                return 1;
            if (b == 1)
                return a % M;

            long t = pow(a, b / 2);
            if ((b & 1) == 0)
                return t * t % M;
            else
                return t * t % M * a % M;
        }
    }
    class Scan
    {
        public int Int { get { return int.Parse(Console.ReadLine().Trim()); } }
        public long Long { get { return long.Parse(Console.ReadLine().Trim()); } }
        public string Str { get { return Console.ReadLine().Trim(); } }
        public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } }
        public int[] IntArrWithSep(char sep) { return Console.ReadLine().Trim().Split(sep).Select(int.Parse).ToArray(); }
        public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } }
        public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } }
        public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } }
        public List<int> IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } }
        public List<long> LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } }
        public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; }
        public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; }
        public void Multi(out int a, out int b, out int c, out int d) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; d = arr[3]; }
        public void Multi(out int a, out string b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1]; }
        public void Multi(out int a, out int b, out string c) { var arr = StrArr; a = int.Parse(arr[0]); b = int.Parse(arr[1]); c = arr[2]; }
        public void Multi(out int a, out char b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1][0]; }
        public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; }
        public void Multi(out long a, out int b) { var arr = LongArr; a = arr[0]; b = (int)arr[1]; }
        public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; }
    }
}
0