結果

問題 No.2929 Miracle Branch
ユーザー titiatitia
提出日時 2024-11-19 03:26:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 845 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-11-19 03:27:21
合計ジャッジ時間 69,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 29 ms
21,888 KB
testcase_02 AC 32 ms
17,700 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 117 ms
17,700 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 30 ms
17,956 KB
testcase_19 AC 31 ms
22,272 KB
testcase_20 AC 34 ms
18,340 KB
testcase_21 AC 42 ms
22,784 KB
testcase_22 AC 28 ms
17,700 KB
testcase_23 AC 53 ms
23,808 KB
testcase_24 AC 126 ms
24,996 KB
testcase_25 AC 38 ms
22,656 KB
testcase_26 AC 28 ms
17,824 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 43 ms
11,008 KB
testcase_34 AC 366 ms
34,688 KB
testcase_35 AC 390 ms
34,560 KB
testcase_36 AC 44 ms
11,008 KB
testcase_37 AC 374 ms
34,688 KB
testcase_38 AC 366 ms
34,560 KB
testcase_39 AC 377 ms
34,560 KB
testcase_40 AC 377 ms
34,688 KB
testcase_41 AC 384 ms
34,560 KB
testcase_42 AC 413 ms
34,560 KB
testcase_43 AC 358 ms
34,560 KB
testcase_44 AC 367 ms
34,560 KB
testcase_45 AC 29 ms
21,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())

# 素因数分解
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