結果

問題 No.2929 Miracle Branch
ユーザー titiatitia
提出日時 2024-11-19 03:30:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-11-19 03:30:39
合計ジャッジ時間 13,664 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 58 ms
10,880 KB
testcase_02 AC 55 ms
11,008 KB
testcase_03 AC 51 ms
10,880 KB
testcase_04 AC 52 ms
10,880 KB
testcase_05 AC 55 ms
10,880 KB
testcase_06 AC 53 ms
10,880 KB
testcase_07 AC 54 ms
10,880 KB
testcase_08 AC 53 ms
10,880 KB
testcase_09 AC 52 ms
10,752 KB
testcase_10 AC 57 ms
11,008 KB
testcase_11 AC 51 ms
10,880 KB
testcase_12 AC 54 ms
10,880 KB
testcase_13 AC 52 ms
11,008 KB
testcase_14 AC 53 ms
10,880 KB
testcase_15 AC 53 ms
10,880 KB
testcase_16 AC 56 ms
10,880 KB
testcase_17 AC 54 ms
11,008 KB
testcase_18 AC 55 ms
11,264 KB
testcase_19 AC 60 ms
11,264 KB
testcase_20 AC 62 ms
11,392 KB
testcase_21 AC 67 ms
12,032 KB
testcase_22 AC 51 ms
10,880 KB
testcase_23 AC 82 ms
12,800 KB
testcase_24 AC 156 ms
18,304 KB
testcase_25 AC 70 ms
11,648 KB
testcase_26 AC 50 ms
10,880 KB
testcase_27 AC 54 ms
11,008 KB
testcase_28 AC 59 ms
10,880 KB
testcase_29 AC 59 ms
11,008 KB
testcase_30 AC 57 ms
10,880 KB
testcase_31 AC 59 ms
11,008 KB
testcase_32 AC 58 ms
10,880 KB
testcase_33 AC 54 ms
11,008 KB
testcase_34 AC 386 ms
34,688 KB
testcase_35 AC 392 ms
34,560 KB
testcase_36 AC 57 ms
10,880 KB
testcase_37 AC 391 ms
34,560 KB
testcase_38 AC 383 ms
34,560 KB
testcase_39 AC 390 ms
34,560 KB
testcase_40 AC 387 ms
34,432 KB
testcase_41 AC 389 ms
34,560 KB
testcase_42 AC 384 ms
34,688 KB
testcase_43 AC 390 ms
34,560 KB
testcase_44 AC 402 ms
34,560 KB
testcase_45 AC 57 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())

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

# 素因数分解
import math 
L=200020

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