結果

問題 No.2929 Miracle Branch
ユーザー timitimi
提出日時 2024-10-12 16:44:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-10-12 16:44:27
合計ジャッジ時間 9,523 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,068 KB
testcase_01 AC 40 ms
58,044 KB
testcase_02 AC 38 ms
58,172 KB
testcase_03 AC 37 ms
60,040 KB
testcase_04 AC 47 ms
59,036 KB
testcase_05 AC 38 ms
59,952 KB
testcase_06 AC 43 ms
59,276 KB
testcase_07 AC 40 ms
60,632 KB
testcase_08 AC 39 ms
59,824 KB
testcase_09 AC 39 ms
59,512 KB
testcase_10 AC 39 ms
58,712 KB
testcase_11 AC 39 ms
59,764 KB
testcase_12 AC 38 ms
58,372 KB
testcase_13 AC 39 ms
58,488 KB
testcase_14 AC 39 ms
59,112 KB
testcase_15 AC 41 ms
59,160 KB
testcase_16 AC 38 ms
58,892 KB
testcase_17 AC 40 ms
58,512 KB
testcase_18 AC 59 ms
69,900 KB
testcase_19 AC 59 ms
70,988 KB
testcase_20 AC 58 ms
73,808 KB
testcase_21 AC 63 ms
76,656 KB
testcase_22 AC 40 ms
58,836 KB
testcase_23 AC 65 ms
76,776 KB
testcase_24 AC 107 ms
81,352 KB
testcase_25 AC 63 ms
76,668 KB
testcase_26 AC 48 ms
63,872 KB
testcase_27 AC 52 ms
66,304 KB
testcase_28 AC 37 ms
57,344 KB
testcase_29 AC 38 ms
57,600 KB
testcase_30 AC 38 ms
57,984 KB
testcase_31 AC 39 ms
57,728 KB
testcase_32 AC 37 ms
57,472 KB
testcase_33 AC 39 ms
58,368 KB
testcase_34 AC 157 ms
96,128 KB
testcase_35 AC 157 ms
96,128 KB
testcase_36 AC 40 ms
57,728 KB
testcase_37 AC 163 ms
95,744 KB
testcase_38 AC 156 ms
96,128 KB
testcase_39 AC 153 ms
95,616 KB
testcase_40 AC 160 ms
95,744 KB
testcase_41 AC 154 ms
96,384 KB
testcase_42 AC 179 ms
95,744 KB
testcase_43 AC 143 ms
96,128 KB
testcase_44 AC 143 ms
96,052 KB
testcase_45 AC 40 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

if N==1:
  print(2)
  print(1,2)
  print('b','g') 
  exit()
  
if N==2:
  print(3)
  print(1,3)
  print(2,3)
  print('g','g','b')
  exit()

A=[]
for i in range(3,2*10**5+1):
  while N%i==0:
    A.append(i)
    N//=i 


if N!=1:
  A.append(N)

if sum(A)+len(A)>2*10**5:
  print(-1)
  exit()
  
l=sum(A)+len(A)
ans=['g']*l
for i in range(len(A)):
  ans[i]='b'
  
B=[];now=len(A)
for i in range(len(A)):
  if i!=0:
    B.append((i,i+1))
  for j in range(A[i]):
    now+=1
    B.append((i+1,now))

print(len(B)+1)
for x,y in B:
  print(x,y)
print(*ans)
  
0