結果

問題 No.2929 Miracle Branch
ユーザー viral8viral8
提出日時 2024-10-19 18:06:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,162 bytes
コンパイル時間 5,010 ms
コンパイル使用メモリ 87,772 KB
実行使用メモリ 69,616 KB
最終ジャッジ日時 2024-10-19 18:07:23
合計ジャッジ時間 32,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
54,876 KB
testcase_01 AC 157 ms
55,036 KB
testcase_02 AC 115 ms
53,228 KB
testcase_03 AC 160 ms
54,880 KB
testcase_04 AC 180 ms
55,032 KB
testcase_05 AC 172 ms
55,052 KB
testcase_06 AC 166 ms
54,960 KB
testcase_07 AC 171 ms
55,280 KB
testcase_08 AC 160 ms
55,116 KB
testcase_09 AC 163 ms
55,028 KB
testcase_10 AC 173 ms
55,280 KB
testcase_11 AC 154 ms
54,780 KB
testcase_12 AC 169 ms
55,000 KB
testcase_13 AC 166 ms
55,032 KB
testcase_14 AC 167 ms
55,164 KB
testcase_15 AC 162 ms
54,848 KB
testcase_16 AC 169 ms
55,212 KB
testcase_17 AC 177 ms
55,132 KB
testcase_18 AC 228 ms
55,524 KB
testcase_19 AC 240 ms
55,572 KB
testcase_20 AC 291 ms
55,796 KB
testcase_21 AC 350 ms
58,436 KB
testcase_22 AC 172 ms
55,060 KB
testcase_23 AC 401 ms
63,112 KB
testcase_24 AC 665 ms
65,436 KB
testcase_25 AC 304 ms
58,020 KB
testcase_26 AC 216 ms
55,156 KB
testcase_27 AC 214 ms
55,064 KB
testcase_28 AC 119 ms
53,088 KB
testcase_29 AC 131 ms
53,864 KB
testcase_30 AC 128 ms
54,040 KB
testcase_31 AC 130 ms
53,876 KB
testcase_32 AC 133 ms
54,096 KB
testcase_33 AC 131 ms
53,860 KB
testcase_34 AC 1,185 ms
66,856 KB
testcase_35 AC 1,150 ms
66,680 KB
testcase_36 AC 158 ms
53,984 KB
testcase_37 AC 1,137 ms
69,352 KB
testcase_38 AC 1,165 ms
69,272 KB
testcase_39 AC 1,144 ms
69,196 KB
testcase_40 AC 1,117 ms
66,604 KB
testcase_41 AC 1,113 ms
67,788 KB
testcase_42 AC 1,184 ms
69,476 KB
testcase_43 AC 1,147 ms
69,616 KB
testcase_44 AC 1,156 ms
69,204 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;

class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		long X = sc.nextLong();
		ArrayList<Long> list = div(X);
		long sum = 0;
		for(long num:list)
			sum += num;
		if(sum>200_000){
			System.out.println(-1);
			return;
		}
		int[][] path = makePath(list);
		System.out.println(sum+list.size());
		for(int[] p:path)
			System.out.println(p[0]+" "+p[1]);
		for(int i=0;i<list.size();i++)
			System.out.print("b ");
		for(int i=0;i<sum;i++)
			System.out.print("g ");
		System.out.println();
	}
	public static ArrayList<Long> div(long X){
		ArrayList<Long> ans = new ArrayList<>();
		for(long i=3;i<=200_000;i++){
			while(X%i==0){
				ans.add(i);
				X /= i;
			}
		}
		if(X>1||ans.size()==0)
			ans.add(X);
		return ans;
	}
	public static int[][] makePath(ArrayList<Long> list){
		ArrayList<int[]> ans = new ArrayList<>();
		int index = list.size();
		for(int i=0;i<list.size();i++)
			for(int j=0;j<list.get(i);j++)
				ans.add(new int[]{i+1,++index});
		for(int i=1;i<list.size();i++)
			ans.add(new int[]{i,i+1});
		return ans.toArray(new int[ans.size()][]);
	}
}
0