結果

問題 No.2929 Miracle Branch
ユーザー vwxyzvwxyz
提出日時 2024-10-12 15:04:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 94,844 KB
最終ジャッジ日時 2024-10-12 15:04:37
合計ジャッジ時間 11,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,436 KB
testcase_01 AC 48 ms
59,800 KB
testcase_02 AC 48 ms
59,004 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 97 ms
72,032 KB
testcase_19 AC 69 ms
72,368 KB
testcase_20 AC 82 ms
76,736 KB
testcase_21 AC 79 ms
76,592 KB
testcase_22 WA -
testcase_23 AC 84 ms
77,152 KB
testcase_24 AC 104 ms
82,060 KB
testcase_25 WA -
testcase_26 AC 60 ms
66,184 KB
testcase_27 AC 64 ms
67,712 KB
testcase_28 AC 47 ms
59,884 KB
testcase_29 AC 46 ms
60,424 KB
testcase_30 AC 47 ms
59,992 KB
testcase_31 AC 47 ms
59,760 KB
testcase_32 AC 48 ms
60,208 KB
testcase_33 AC 48 ms
60,100 KB
testcase_34 AC 185 ms
94,692 KB
testcase_35 AC 188 ms
94,844 KB
testcase_36 AC 48 ms
60,236 KB
testcase_37 AC 185 ms
94,532 KB
testcase_38 AC 183 ms
94,820 KB
testcase_39 AC 185 ms
94,556 KB
testcase_40 AC 187 ms
94,608 KB
testcase_41 AC 189 ms
94,824 KB
testcase_42 AC 207 ms
94,632 KB
testcase_43 AC 163 ms
94,720 KB
testcase_44 AC 166 ms
94,456 KB
testcase_45 AC 47 ms
60,080 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
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