結果

問題 No.282 おもりと天秤(2)
ユーザー uwiuwi
提出日時 2015-09-19 02:19:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,418 ms / 5,000 ms
コード長 1,727 bytes
コンパイル時間 3,608 ms
コンパイル使用メモリ 86,424 KB
実行使用メモリ 84,468 KB
平均クエリ数 220.83
最終ジャッジ日時 2024-07-16 21:29:42
合計ジャッジ時間 27,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
69,996 KB
testcase_01 AC 194 ms
70,968 KB
testcase_02 AC 187 ms
70,976 KB
testcase_03 AC 170 ms
69,348 KB
testcase_04 AC 179 ms
71,088 KB
testcase_05 AC 187 ms
71,124 KB
testcase_06 AC 196 ms
70,856 KB
testcase_07 AC 168 ms
70,180 KB
testcase_08 AC 199 ms
70,660 KB
testcase_09 AC 144 ms
70,132 KB
testcase_10 AC 727 ms
76,544 KB
testcase_11 AC 2,085 ms
80,168 KB
testcase_12 AC 786 ms
77,104 KB
testcase_13 AC 1,104 ms
78,536 KB
testcase_14 AC 1,852 ms
81,036 KB
testcase_15 AC 2,235 ms
83,268 KB
testcase_16 AC 273 ms
71,992 KB
testcase_17 AC 1,029 ms
76,900 KB
testcase_18 AC 1,579 ms
80,724 KB
testcase_19 AC 1,652 ms
80,428 KB
testcase_20 AC 2,418 ms
84,468 KB
testcase_21 AC 2,348 ms
82,032 KB
testcase_22 AC 2,341 ms
81,012 KB
testcase_23 AC 144 ms
69,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package contest;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class Q721 {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		int n = ni();
		in.nextLine();
		int[] a = new int[n];
		for(int i = 0;i < n;i++)a[i] = i+1;
		for(int i = 0;i < n;i++){
			if(i % 2 == 0){
				out.print("?");
				for(int j = 0;j < n/2*2;j++){
					out.print(" " + a[j]);
				}
				for(int j = n/2*2;j < 2*n;j++){
					out.print(" " + 0);
				}
				out.println();
				out.flush();
				
				char[] s = in.nextLine().trim().toCharArray();
				for(int j = 0;j < n/2;j++){
					if(s[2*j] == '>'){
						int d = a[2*j]; a[2*j] = a[2*j+1]; a[2*j+1] = d;
					}
				}
			}else{
				out.print("?");
				for(int j = 1;j < 1+(n-1)/2*2;j++){
					out.print(" " + a[j]);
				}
				for(int j = (n-1)/2*2;j < 2*n;j++){
					out.print(" " + 0);
				}
				out.println();
				out.flush();
				
				char[] s = in.nextLine().trim().toCharArray();
				for(int j = 0;j < (n-1)/2;j++){
					if(s[2*j] == '>'){
						int d = a[2*j+1]; a[2*j+1] = a[2*j+2]; a[2*j+2] = d;
					}
				}
			}
		}
		out.print("!");
		for(int j = 0;j < n;j++){
			out.print(" " + a[j]);
		}
		out.println();
		out.flush();
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0