結果

問題 No.2929 Miracle Branch
ユーザー titiatitia
提出日時 2024-11-19 03:28:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 913 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 138,496 KB
最終ジャッジ日時 2024-11-19 03:29:14
合計ジャッジ時間 66,142 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,344 KB
testcase_01 AC 38 ms
109,824 KB
testcase_02 AC 41 ms
63,104 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 53 ms
63,616 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 61 ms
125,056 KB
testcase_19 AC 60 ms
73,216 KB
testcase_20 AC 62 ms
128,128 KB
testcase_21 AC 68 ms
81,792 KB
testcase_22 AC 41 ms
110,464 KB
testcase_23 AC 70 ms
82,304 KB
testcase_24 AC 88 ms
138,496 KB
testcase_25 AC 61 ms
79,104 KB
testcase_26 AC 49 ms
60,672 KB
testcase_27 AC 54 ms
63,744 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 44 ms
57,472 KB
testcase_34 AC 150 ms
94,324 KB
testcase_35 AC 147 ms
94,448 KB
testcase_36 AC 43 ms
58,112 KB
testcase_37 AC 148 ms
94,592 KB
testcase_38 AC 146 ms
94,364 KB
testcase_39 AC 150 ms
94,376 KB
testcase_40 AC 148 ms
94,308 KB
testcase_41 AC 151 ms
94,208 KB
testcase_42 AC 151 ms
94,592 KB
testcase_43 AC 149 ms
94,444 KB
testcase_44 AC 147 ms
94,700 KB
testcase_45 AC 43 ms
115,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())

if x==1:
    print(2)
    print(1,2)
    print("b","g")
    exit()

# 素因数分解
import math 
L=int(math.sqrt(x))

FACT=dict()

for i in range(2,L+2):
    while x%i==0:
        FACT[i]=FACT.get(i,0)+1
        x=x//i

if x!=1:
    FACT[x]=FACT.get(x,0)+1

LIST=[]

for f in FACT:
    x=FACT[f]

    if f==2:
        while x>=2:
            LIST.append(4)
            x-=2

        if x==1:
            LIST.append(2)
    else:
        for i in range(x):
            LIST.append(f)

if len(LIST)+sum(LIST)>200000:
    print(-1)
else:
    X=len(LIST)+sum(LIST)
    print(X)

    ANS=[]
    for i in range(1,len(LIST)):
        ANS.append((i,i+1))

    c=len(LIST)+1

    for i in range(1,len(LIST)+1):
        for j in range(LIST[i-1]):
            ANS.append((i,c))
            c+=1

    for x,y in ANS:
        print(x,y)

    LL=["b"]*len(LIST)+["g"]*sum(LIST)

    print(" ".join(LL))

    
0