結果

問題 No.850 企業コンテスト2位
ユーザー 37zigen37zigen
提出日時 2019-07-05 21:55:17
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,250 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 85,056 KB
実行使用メモリ 73,020 KB
平均クエリ数 237.04
最終ジャッジ日時 2024-07-16 17:18:23
合計ジャッジ時間 14,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 187 ms
71,260 KB
testcase_01 AC 191 ms
71,828 KB
testcase_02 AC 179 ms
71,932 KB
testcase_03 AC 175 ms
71,260 KB
testcase_04 AC 173 ms
71,500 KB
testcase_05 AC 177 ms
71,820 KB
testcase_06 AC 177 ms
70,968 KB
testcase_07 AC 231 ms
72,100 KB
testcase_08 AC 280 ms
72,004 KB
testcase_09 AC 275 ms
72,108 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 184 ms
71,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		ArrayDeque<Integer> que = new ArrayDeque<>();
		for (int i = 1; i <= N; ++i)
			que.addLast(i);
		while (que.size() > 1) {
			ArrayDeque<Integer> next = new ArrayDeque<>();
			while (!que.isEmpty()) {
				if (que.size() >= 2) {
					System.out.println("? " + que.pop() + " " + que.pop());
					int ans = sc.nextInt();
					next.add(ans);
				} else if (que.size() == 1) {
					next.add(que.pop());
				}
			}
			que = next;
		}
		int first=que.pop();
		for(int i=1;i<=N;++i) {
			if(i!=first) {
				que.addLast(i);
			}
		}
		
		while (que.size() > 1) {
			ArrayDeque<Integer> next = new ArrayDeque<>();
			while (!que.isEmpty()) {
				if (que.size() >= 2) {
					System.out.println("? " + que.pop() + " " + que.pop());
					int ans = sc.nextInt();
					next.add(ans);
				} else if (que.size() == 1) {
					next.add(que.pop());
				}
			}
			que = next;
		}
		int second=que.pop();
		System.out.println("! " + second);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0