結果

問題 No.2929 Miracle Branch
ユーザー こめだわらこめだわら
提出日時 2024-10-12 15:43:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 1,013 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 83,824 KB
最終ジャッジ日時 2024-10-12 15:43:49
合計ジャッジ時間 10,630 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,208 KB
testcase_01 AC 41 ms
55,632 KB
testcase_02 AC 48 ms
59,556 KB
testcase_03 AC 43 ms
55,592 KB
testcase_04 AC 44 ms
54,648 KB
testcase_05 AC 70 ms
54,804 KB
testcase_06 AC 42 ms
55,332 KB
testcase_07 AC 43 ms
55,520 KB
testcase_08 AC 44 ms
55,032 KB
testcase_09 AC 43 ms
55,244 KB
testcase_10 AC 42 ms
55,120 KB
testcase_11 AC 42 ms
54,740 KB
testcase_12 AC 41 ms
55,476 KB
testcase_13 AC 45 ms
55,448 KB
testcase_14 AC 42 ms
54,944 KB
testcase_15 AC 44 ms
55,320 KB
testcase_16 AC 45 ms
55,896 KB
testcase_17 AC 44 ms
55,532 KB
testcase_18 AC 65 ms
70,996 KB
testcase_19 AC 65 ms
71,496 KB
testcase_20 AC 65 ms
74,364 KB
testcase_21 AC 71 ms
76,368 KB
testcase_22 AC 43 ms
54,788 KB
testcase_23 AC 74 ms
76,752 KB
testcase_24 AC 94 ms
78,792 KB
testcase_25 AC 73 ms
76,644 KB
testcase_26 AC 54 ms
64,564 KB
testcase_27 AC 59 ms
67,600 KB
testcase_28 AC 48 ms
59,992 KB
testcase_29 AC 47 ms
59,696 KB
testcase_30 AC 51 ms
59,768 KB
testcase_31 AC 47 ms
59,312 KB
testcase_32 AC 48 ms
59,300 KB
testcase_33 AC 46 ms
59,980 KB
testcase_34 AC 149 ms
83,788 KB
testcase_35 AC 149 ms
83,824 KB
testcase_36 AC 46 ms
59,072 KB
testcase_37 AC 151 ms
83,556 KB
testcase_38 AC 146 ms
83,740 KB
testcase_39 AC 145 ms
83,724 KB
testcase_40 AC 147 ms
83,632 KB
testcase_41 AC 148 ms
83,792 KB
testcase_42 AC 149 ms
83,768 KB
testcase_43 AC 164 ms
83,584 KB
testcase_44 AC 146 ms
83,792 KB
testcase_45 AC 42 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
def prime_decomposition(N): #O(sqrt(N))
    P=defaultdict(int)
    for i in range(2,N):
        if i*i>N:
            break
        if i>2*10**5:
            print(-1)
            exit()
        if N%i==0:
            j=0
            while N%i==0:
                N//=i
                j+=1
            P[i]=j
    if N!=1:
        P[N]=1
    return P

X=int(input())
if X==1:
    print(2)
    print(1,2)
    print('b','g')
    exit()
px=prime_decomposition(X)

L=[]
for k,v in px.items():
    if k==2:
        for _ in range(v//2):
            L.append(4)
        if v%2==1:
            L.append(2)
    else:
        for _ in range(v):
            L.append(k)

s=0
for i in L:
    s+=i+1

if s>2*10**5:
    print(-1)
    exit()

print(s)
for i in range(len(L)-1):
    print(i+1,i+2)

now=len(L)
for i in range(len(L)):
    for _ in range(L[i]):
        print(i+1,now+1)
        now+=1

C=[None]*now
for i in range(len(L)):
    C[i]='b'
for i in range(len(L),now):
    C[i]='g'

print(*C)
0