結果

問題 No.2353 Guardian Dogs in Spring
ユーザー ks2mks2m
提出日時 2023-06-16 21:58:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 3,451 ms
コンパイル使用メモリ 81,624 KB
実行使用メモリ 56,988 KB
最終ジャッジ日時 2024-06-24 14:08:45
合計ジャッジ時間 16,253 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
51,484 KB
testcase_01 AC 85 ms
51,416 KB
testcase_02 AC 86 ms
51,436 KB
testcase_03 AC 87 ms
51,464 KB
testcase_04 AC 88 ms
51,300 KB
testcase_05 AC 224 ms
56,776 KB
testcase_06 AC 224 ms
56,664 KB
testcase_07 AC 225 ms
56,760 KB
testcase_08 AC 225 ms
56,488 KB
testcase_09 AC 214 ms
56,480 KB
testcase_10 AC 226 ms
56,684 KB
testcase_11 AC 212 ms
56,776 KB
testcase_12 AC 217 ms
56,872 KB
testcase_13 AC 217 ms
56,756 KB
testcase_14 AC 95 ms
51,672 KB
testcase_15 AC 229 ms
56,608 KB
testcase_16 AC 219 ms
56,596 KB
testcase_17 AC 221 ms
56,572 KB
testcase_18 AC 223 ms
56,700 KB
testcase_19 AC 216 ms
56,652 KB
testcase_20 AC 110 ms
51,628 KB
testcase_21 AC 126 ms
52,184 KB
testcase_22 AC 184 ms
54,612 KB
testcase_23 AC 221 ms
56,988 KB
testcase_24 AC 133 ms
52,132 KB
testcase_25 AC 131 ms
52,272 KB
testcase_26 AC 118 ms
52,312 KB
testcase_27 AC 93 ms
51,532 KB
testcase_28 AC 139 ms
52,484 KB
testcase_29 AC 202 ms
56,300 KB
testcase_30 AC 178 ms
53,676 KB
testcase_31 AC 204 ms
56,244 KB
testcase_32 AC 210 ms
56,952 KB
testcase_33 AC 216 ms
56,856 KB
testcase_34 AC 217 ms
56,764 KB
testcase_35 AC 223 ms
56,784 KB
testcase_36 AC 129 ms
52,480 KB
testcase_37 AC 121 ms
52,148 KB
testcase_38 AC 178 ms
53,484 KB
testcase_39 AC 187 ms
54,252 KB
testcase_40 AC 193 ms
55,696 KB
testcase_41 AC 207 ms
56,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.PriorityQueue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		PriorityQueue<Obj> que = new PriorityQueue<>((o1, o2) -> {
			if (o1.x != o2.x) {
				return o1.x - o2.x;
			}
			return o1.y - o2.y;
		});
		for (int i = 0; i < n; i++) {
			String[] sa = br.readLine().split(" ");
			Obj o = new Obj();
			o.i = i;
			o.x = Integer.parseInt(sa[0]);
			o.y = Integer.parseInt(sa[1]);
			que.add(o);
		}
		br.close();

		PrintWriter pw = new PrintWriter(System.out);
		pw.println(n / 2);
		while (que.size() >= 2) {
			Obj o1 = que.poll();
			Obj o2 = que.poll();
			pw.println((o1.i + 1) + " " + (o2.i + 1));
		}
		pw.flush();
	}

	static class Obj {
		int i, x, y;
	}
}
0