結果

問題 No.2519 Coins in Array
ユーザー ks2mks2m
提出日時 2023-10-27 23:04:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,335 bytes
コンパイル時間 2,846 ms
コンパイル使用メモリ 78,544 KB
実行使用メモリ 62,008 KB
最終ジャッジ日時 2024-09-25 15:03:51
合計ジャッジ時間 13,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,532 KB
testcase_01 AC 50 ms
36,888 KB
testcase_02 AC 51 ms
36,812 KB
testcase_03 AC 50 ms
36,888 KB
testcase_04 WA -
testcase_05 AC 53 ms
45,744 KB
testcase_06 AC 52 ms
36,808 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 54 ms
48,008 KB
testcase_11 AC 54 ms
36,964 KB
testcase_12 AC 51 ms
36,904 KB
testcase_13 AC 52 ms
36,984 KB
testcase_14 AC 52 ms
36,844 KB
testcase_15 AC 51 ms
36,792 KB
testcase_16 AC 51 ms
36,876 KB
testcase_17 AC 51 ms
36,728 KB
testcase_18 AC 50 ms
36,800 KB
testcase_19 AC 51 ms
37,168 KB
testcase_20 AC 52 ms
36,964 KB
testcase_21 AC 52 ms
37,024 KB
testcase_22 WA -
testcase_23 AC 405 ms
62,008 KB
testcase_24 AC 407 ms
55,000 KB
testcase_25 AC 50 ms
36,940 KB
testcase_26 AC 52 ms
37,000 KB
testcase_27 AC 426 ms
56,084 KB
testcase_28 AC 459 ms
56,456 KB
testcase_29 AC 419 ms
56,088 KB
testcase_30 AC 459 ms
55,096 KB
testcase_31 AC 178 ms
41,948 KB
testcase_32 AC 297 ms
49,040 KB
testcase_33 AC 341 ms
52,580 KB
testcase_34 AC 255 ms
46,292 KB
testcase_35 AC 333 ms
52,316 KB
testcase_36 AC 233 ms
46,700 KB
testcase_37 AC 157 ms
41,372 KB
testcase_38 AC 302 ms
48,880 KB
testcase_39 AC 242 ms
46,272 KB
testcase_40 AC 374 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.Map;

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(" ");
		int[] a = new int[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] - 1L) * (a[1] - 1));
			Map<Long, Integer> map12 = bunkai((a[1] - 1L) * (a[2] - 1));
			Map<Long, Integer> map20 = bunkai((a[2] - 1L) * (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;
				}
			}

			System.out.println(((a[0] - 1L) * (a[1] - 1) - 1) * (a[2] - 1));
			System.out.println("1 2");
			System.out.println("1 2");
		}
	}

	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