結果

問題 No.2519 Coins in Array
ユーザー ks2mks2m
提出日時 2023-10-27 23:14:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,715 bytes
コンパイル時間 3,746 ms
コンパイル使用メモリ 85,912 KB
実行使用メモリ 74,480 KB
最終ジャッジ日時 2023-10-27 23:15:14
合計ジャッジ時間 14,168 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,236 KB
testcase_01 AC 55 ms
53,232 KB
testcase_02 AC 53 ms
53,340 KB
testcase_03 AC 91 ms
54,512 KB
testcase_04 WA -
testcase_05 AC 91 ms
54,424 KB
testcase_06 AC 56 ms
53,232 KB
testcase_07 AC 94 ms
54,496 KB
testcase_08 AC 55 ms
53,200 KB
testcase_09 AC 90 ms
54,284 KB
testcase_10 AC 91 ms
54,468 KB
testcase_11 AC 55 ms
53,240 KB
testcase_12 AC 55 ms
53,236 KB
testcase_13 AC 55 ms
53,240 KB
testcase_14 AC 54 ms
53,236 KB
testcase_15 AC 55 ms
53,328 KB
testcase_16 AC 55 ms
53,236 KB
testcase_17 AC 53 ms
53,240 KB
testcase_18 AC 54 ms
53,236 KB
testcase_19 AC 55 ms
53,280 KB
testcase_20 AC 55 ms
53,340 KB
testcase_21 AC 55 ms
53,336 KB
testcase_22 AC 55 ms
53,240 KB
testcase_23 AC 483 ms
74,480 KB
testcase_24 AC 433 ms
74,208 KB
testcase_25 AC 54 ms
53,340 KB
testcase_26 AC 54 ms
53,344 KB
testcase_27 AC 435 ms
74,260 KB
testcase_28 AC 419 ms
73,328 KB
testcase_29 AC 443 ms
73,588 KB
testcase_30 AC 430 ms
68,592 KB
testcase_31 AC 187 ms
57,720 KB
testcase_32 AC 297 ms
63,636 KB
testcase_33 AC 336 ms
65,972 KB
testcase_34 AC 258 ms
61,152 KB
testcase_35 AC 331 ms
65,896 KB
testcase_36 AC 221 ms
61,224 KB
testcase_37 AC 156 ms
57,856 KB
testcase_38 AC 311 ms
63,472 KB
testcase_39 AC 248 ms
61,396 KB
testcase_40 AC 386 ms
68,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.Map;
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());
		String[] sa = br.readLine().split(" ");
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		if (n >= 4) {
			PrintWriter pw = new PrintWriter(System.out);
			pw.println(0);
			for (int i = 0; i < n - 1; i++) {
				pw.println("1 2");
			}
			pw.flush();

		} else if (n == 2) {
			Map<Long, Integer> map0 = bunkai(a[0]);
			Map<Long, Integer> map1 = bunkai(a[1]);
			long m = (a[0] - 1) * (a[1] - 1);
			for (Long k : map0.keySet()) {
				if (map1.containsKey(k)) {
					m = 0;
					break;
				}
			}
			System.out.println(m);
			System.out.println("1 2");

		} else {
			Map<Long, Integer> map0 = bunkai(a[0]);
			Map<Long, Integer> map1 = bunkai(a[1]);
			Map<Long, Integer> map2 = bunkai(a[2]);
			Map<Long, Integer> map01 = bunkai((a[0] - 1) * (a[1] - 1));
			Map<Long, Integer> map12 = bunkai((a[1] - 1) * (a[2] - 1));
			Map<Long, Integer> map20 = bunkai((a[2] - 1) * (a[0] - 1));
			for (Long k : map0.keySet()) {
				if (map12.containsKey(k)) {
					System.out.println(0);
					System.out.println("2 3");
					System.out.println("1 2");
					return;
				}
			}
			for (Long k : map1.keySet()) {
				if (map20.containsKey(k)) {
					System.out.println(0);
					System.out.println("1 3");
					System.out.println("1 2");
					return;
				}
			}
			for (Long k : map2.keySet()) {
				if (map01.containsKey(k)) {
					System.out.println(0);
					System.out.println("1 2");
					System.out.println("1 2");
					return;
				}
			}

			PriorityQueue<Obj> que = new PriorityQueue<>((o1, o2) -> o1.a - o2.a);
			for (int i = 0; i < n; i++) {
				Obj o = new Obj();
				o.i = i;
				o.a = (int) a[i];
				que.add(o);
			}
			Obj f = que.poll();
			long m = f.a;
			Obj o1 = que.poll();
			Obj o2 = que.poll();
			m = (m - 1) * (o1.a - 1);
			m = (m - 1) * (o2.a - 1);
			System.out.println(m);
			System.out.println((f.i + 1) + " " + (o1.i + 1));
			System.out.println("1 2");
		}
	}

	static class Obj {
		int i, a;
	}

	static Map<Long, Integer> bunkai(long n) {
		Map<Long, Integer> soinsu = new HashMap<>();
		int end = (int) Math.sqrt(n);
		long d = 2;
		while (n > 1) {
			if (n % d == 0) {
				n /= d;
				soinsu.put(d, soinsu.getOrDefault(d, 0) + 1);
				end = (int) Math.sqrt(n);
			} else {
				if (d > end) {
					d = n - 1;
				}
				d++;
			}
		}
		return soinsu;
	}
}
0