結果

問題 No.2519 Coins in Array
ユーザー ks2mks2m
提出日時 2023-10-27 23:18:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,738 bytes
コンパイル時間 3,019 ms
コンパイル使用メモリ 88,088 KB
実行使用メモリ 59,944 KB
最終ジャッジ日時 2024-09-25 15:16:01
合計ジャッジ時間 13,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,812 KB
testcase_01 AC 51 ms
36,780 KB
testcase_02 AC 50 ms
36,876 KB
testcase_03 AC 84 ms
38,080 KB
testcase_04 WA -
testcase_05 AC 86 ms
38,292 KB
testcase_06 AC 52 ms
36,956 KB
testcase_07 AC 83 ms
38,388 KB
testcase_08 AC 51 ms
36,876 KB
testcase_09 AC 87 ms
38,044 KB
testcase_10 AC 82 ms
38,368 KB
testcase_11 AC 51 ms
36,944 KB
testcase_12 AC 51 ms
36,664 KB
testcase_13 AC 51 ms
36,980 KB
testcase_14 AC 51 ms
36,872 KB
testcase_15 AC 50 ms
37,116 KB
testcase_16 AC 52 ms
36,952 KB
testcase_17 AC 50 ms
36,504 KB
testcase_18 AC 50 ms
37,108 KB
testcase_19 AC 52 ms
37,012 KB
testcase_20 AC 53 ms
36,872 KB
testcase_21 AC 51 ms
37,264 KB
testcase_22 AC 50 ms
36,752 KB
testcase_23 AC 441 ms
59,944 KB
testcase_24 AC 440 ms
59,448 KB
testcase_25 AC 52 ms
36,796 KB
testcase_26 AC 53 ms
36,892 KB
testcase_27 AC 448 ms
59,560 KB
testcase_28 AC 441 ms
59,516 KB
testcase_29 AC 487 ms
59,700 KB
testcase_30 AC 399 ms
54,188 KB
testcase_31 AC 184 ms
42,208 KB
testcase_32 AC 300 ms
49,068 KB
testcase_33 AC 353 ms
52,220 KB
testcase_34 AC 285 ms
46,460 KB
testcase_35 AC 333 ms
52,012 KB
testcase_36 AC 218 ms
46,316 KB
testcase_37 AC 159 ms
41,500 KB
testcase_38 AC 308 ms
48,828 KB
testcase_39 AC 247 ms
46,232 KB
testcase_40 AC 394 ms
55,940 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);
			if (m != 0) {
				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