結果

問題 No.2929 Miracle Branch
ユーザー vwxyzvwxyz
提出日時 2024-10-12 15:06:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 94,976 KB
最終ジャッジ日時 2024-10-12 15:06:48
合計ジャッジ時間 10,670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 45 ms
58,752 KB
testcase_02 AC 45 ms
59,276 KB
testcase_03 AC 50 ms
59,392 KB
testcase_04 AC 46 ms
59,776 KB
testcase_05 AC 48 ms
59,520 KB
testcase_06 AC 47 ms
59,904 KB
testcase_07 AC 46 ms
60,288 KB
testcase_08 AC 47 ms
60,032 KB
testcase_09 AC 48 ms
60,032 KB
testcase_10 AC 47 ms
60,032 KB
testcase_11 AC 46 ms
59,904 KB
testcase_12 AC 44 ms
59,648 KB
testcase_13 AC 46 ms
59,776 KB
testcase_14 AC 46 ms
59,904 KB
testcase_15 AC 46 ms
59,776 KB
testcase_16 AC 47 ms
59,648 KB
testcase_17 AC 45 ms
59,904 KB
testcase_18 AC 66 ms
71,296 KB
testcase_19 AC 64 ms
72,064 KB
testcase_20 AC 73 ms
76,800 KB
testcase_21 AC 73 ms
77,008 KB
testcase_22 AC 47 ms
59,776 KB
testcase_23 AC 76 ms
77,184 KB
testcase_24 AC 98 ms
81,212 KB
testcase_25 AC 75 ms
76,800 KB
testcase_26 AC 54 ms
65,024 KB
testcase_27 AC 60 ms
67,328 KB
testcase_28 AC 44 ms
58,880 KB
testcase_29 AC 46 ms
59,136 KB
testcase_30 AC 44 ms
59,392 KB
testcase_31 AC 44 ms
59,264 KB
testcase_32 AC 44 ms
59,136 KB
testcase_33 AC 44 ms
59,648 KB
testcase_34 AC 184 ms
94,336 KB
testcase_35 AC 178 ms
94,464 KB
testcase_36 AC 45 ms
59,460 KB
testcase_37 AC 175 ms
94,464 KB
testcase_38 AC 183 ms
94,976 KB
testcase_39 AC 215 ms
94,720 KB
testcase_40 AC 177 ms
94,592 KB
testcase_41 AC 177 ms
94,604 KB
testcase_42 AC 183 ms
94,908 KB
testcase_43 AC 175 ms
94,720 KB
testcase_44 AC 159 ms
94,592 KB
testcase_45 AC 44 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

X=int(input())
fact=defaultdict(int)
if X==1:
    print(2)
    print(1,2)
    print("b","g")
    exit()
for p in range(2,2*10**5):
    while X%p==0:
        X//=p
        fact[p]+=1
if X>1:
    fact[X]+=1
if 2 in fact:
    c=fact[2]
    fact[4]=c//2
    fact[2]=c%2
s=0
le=0
for p,e in fact.items():
    s+=(p+1)*e
    le+=e
if s>2*10**5:
    print(-1)
    exit()
ans_lst=[]
for i in range(le-1):
    ans_lst.append((i,i+1))
cur0=0
cur1=le
for p,e in fact.items():
    for i in range(e):
        for j in range(p):
            ans_lst.append((cur0,cur1))
            cur1+=1
        cur0+=1
assert len(ans_lst)==s-1
print(s)
for i,j in ans_lst:
    print(i+1,j+1)
print(*["b"]*le+["g"]*(s-le))
0