結果

問題 No.2929 Miracle Branch
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 16:28:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,712 KB
最終ジャッジ日時 2024-10-12 16:28:28
合計ジャッジ時間 9,799 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 40 ms
57,600 KB
testcase_02 AC 40 ms
57,984 KB
testcase_03 AC 41 ms
58,752 KB
testcase_04 AC 43 ms
58,728 KB
testcase_05 AC 42 ms
58,240 KB
testcase_06 AC 41 ms
58,496 KB
testcase_07 AC 41 ms
58,496 KB
testcase_08 AC 42 ms
58,368 KB
testcase_09 AC 43 ms
58,368 KB
testcase_10 AC 43 ms
58,240 KB
testcase_11 AC 43 ms
58,624 KB
testcase_12 AC 49 ms
57,600 KB
testcase_13 AC 41 ms
58,240 KB
testcase_14 AC 42 ms
58,372 KB
testcase_15 AC 44 ms
58,112 KB
testcase_16 AC 43 ms
58,368 KB
testcase_17 AC 42 ms
58,240 KB
testcase_18 AC 61 ms
68,608 KB
testcase_19 AC 60 ms
69,504 KB
testcase_20 AC 64 ms
72,448 KB
testcase_21 AC 87 ms
76,160 KB
testcase_22 AC 42 ms
58,368 KB
testcase_23 AC 68 ms
76,288 KB
testcase_24 AC 84 ms
78,708 KB
testcase_25 AC 69 ms
76,144 KB
testcase_26 AC 49 ms
63,616 KB
testcase_27 AC 52 ms
65,920 KB
testcase_28 AC 38 ms
57,728 KB
testcase_29 AC 49 ms
57,216 KB
testcase_30 AC 39 ms
57,600 KB
testcase_31 AC 39 ms
57,344 KB
testcase_32 AC 38 ms
57,216 KB
testcase_33 AC 40 ms
57,984 KB
testcase_34 AC 143 ms
85,712 KB
testcase_35 AC 158 ms
85,248 KB
testcase_36 AC 38 ms
58,368 KB
testcase_37 AC 138 ms
85,504 KB
testcase_38 AC 153 ms
85,376 KB
testcase_39 AC 151 ms
85,376 KB
testcase_40 AC 146 ms
85,120 KB
testcase_41 AC 145 ms
85,428 KB
testcase_42 AC 161 ms
85,120 KB
testcase_43 AC 138 ms
85,120 KB
testcase_44 AC 136 ms
85,200 KB
testcase_45 AC 41 ms
57,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
if n==1:
  print(2)
  print(1,2)
  print("b","g")
X=2*10**5
f=[]
for i in range(2,X):
  if n%i==0:
    while n%i==0:
      n//=i
      if len(f)>0 and f[-1]==2 and i==2:
        f.pop()
        f+=[4]
      else:
        f+=[i]
if n>1:
  f+=[n]
if len(f)+sum(f)>X:
  print(-1)
  exit()
print(len(f)+sum(f))
for i in range(len(f)-1):
  print(i+1,i+1+1)
c=len(f)
for i in range(len(f)):
  for j in range(f[i]):
    print(i+1,c+j+1)
  c+=f[i]
print(*(["b"]*len(f)+["g"]*sum(f)))
0