結果

問題 No.2519 Coins in Array
ユーザー ks2mks2m
提出日時 2023-10-27 22:50:32
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,668 bytes
コンパイル時間 3,318 ms
コンパイル使用メモリ 80,584 KB
実行使用メモリ 64,124 KB
最終ジャッジ日時 2024-09-25 14:52:57
合計ジャッジ時間 15,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 70 ms
37,980 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 72 ms
38,004 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 71 ms
38,160 KB
testcase_20 AC 72 ms
38,356 KB
testcase_21 AC 72 ms
38,420 KB
testcase_22 RE -
testcase_23 AC 528 ms
60,560 KB
testcase_24 WA -
testcase_25 AC 73 ms
45,292 KB
testcase_26 AC 71 ms
37,984 KB
testcase_27 AC 550 ms
61,916 KB
testcase_28 AC 562 ms
61,080 KB
testcase_29 WA -
testcase_30 AC 543 ms
64,124 KB
testcase_31 AC 255 ms
45,888 KB
testcase_32 AC 389 ms
54,580 KB
testcase_33 AC 424 ms
54,160 KB
testcase_34 AC 328 ms
48,064 KB
testcase_35 WA -
testcase_36 AC 299 ms
51,336 KB
testcase_37 WA -
testcase_38 AC 380 ms
55,252 KB
testcase_39 AC 299 ms
47,608 KB
testcase_40 AC 521 ms
61,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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);
			pw.println("1 2");
			pw.println("1 2");
			for (int i = n - 2; i >= 2; i--) {
				pw.println("1 " + i);
			}
			pw.flush();

		} else {
			Set<Integer> set = new HashSet<>();
			Map<Integer, Integer> map0 = bunkai(a[0]);
			for (Integer k : map0.keySet()) {
				set.add(k);
			}
			long m = a[0];
			for (int i = 1; i < n; i++) {
				Map<Integer, Integer> map = bunkai(a[i]);
				for (Integer k : map.keySet()) {
					if (!set.add(k)) {
						m = 0;
						break;
					}
				}
				if (m != 0) {
					m = (m - 1) * (a[i] - 1);
				}
			}
			System.out.println(m);
			for (int i = 0; i < n - 1; i++) {
				System.out.println("1 2");
			}
			throw new RuntimeException();
		}
	}

	static Map<Integer, Integer> bunkai(int n) {
		Map<Integer, Integer> soinsu = new HashMap<>();
		int end = (int) Math.sqrt(n);
		int 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