結果

問題 No.2519 Coins in Array
ユーザー ks2mks2m
提出日時 2023-10-27 22:49:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,635 bytes
コンパイル時間 3,641 ms
コンパイル使用メモリ 80,796 KB
実行使用メモリ 72,540 KB
最終ジャッジ日時 2024-09-25 14:50:59
合計ジャッジ時間 16,483 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
49,992 KB
testcase_01 AC 52 ms
49,912 KB
testcase_02 AC 69 ms
51,192 KB
testcase_03 AC 52 ms
49,848 KB
testcase_04 AC 51 ms
50,252 KB
testcase_05 AC 52 ms
50,216 KB
testcase_06 AC 52 ms
50,208 KB
testcase_07 WA -
testcase_08 AC 52 ms
49,968 KB
testcase_09 WA -
testcase_10 AC 52 ms
49,908 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 57 ms
50,116 KB
testcase_15 AC 73 ms
51,188 KB
testcase_16 WA -
testcase_17 AC 53 ms
50,212 KB
testcase_18 AC 54 ms
50,368 KB
testcase_19 AC 70 ms
51,044 KB
testcase_20 AC 75 ms
51,112 KB
testcase_21 AC 73 ms
51,096 KB
testcase_22 AC 52 ms
49,932 KB
testcase_23 AC 564 ms
72,456 KB
testcase_24 WA -
testcase_25 AC 71 ms
50,848 KB
testcase_26 AC 73 ms
50,836 KB
testcase_27 AC 528 ms
72,396 KB
testcase_28 AC 526 ms
71,852 KB
testcase_29 WA -
testcase_30 AC 529 ms
69,896 KB
testcase_31 AC 245 ms
56,308 KB
testcase_32 AC 384 ms
61,428 KB
testcase_33 AC 434 ms
63,796 KB
testcase_34 AC 333 ms
59,076 KB
testcase_35 WA -
testcase_36 AC 291 ms
59,092 KB
testcase_37 WA -
testcase_38 AC 385 ms
63,360 KB
testcase_39 AC 293 ms
58,928 KB
testcase_40 AC 509 ms
72,304 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");
			}
		}
	}

	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