結果

問題 No.2929 Miracle Branch
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 16:26:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-10-12 16:27:03
合計ジャッジ時間 11,405 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 46 ms
57,728 KB
testcase_02 AC 45 ms
57,472 KB
testcase_03 AC 49 ms
57,856 KB
testcase_04 AC 49 ms
58,112 KB
testcase_05 AC 47 ms
58,240 KB
testcase_06 AC 48 ms
57,984 KB
testcase_07 AC 49 ms
57,984 KB
testcase_08 AC 48 ms
58,240 KB
testcase_09 AC 48 ms
58,496 KB
testcase_10 AC 48 ms
58,368 KB
testcase_11 AC 48 ms
58,240 KB
testcase_12 AC 48 ms
57,856 KB
testcase_13 AC 48 ms
58,240 KB
testcase_14 AC 49 ms
58,112 KB
testcase_15 AC 49 ms
58,240 KB
testcase_16 AC 47 ms
58,112 KB
testcase_17 AC 48 ms
58,112 KB
testcase_18 AC 71 ms
68,480 KB
testcase_19 AC 72 ms
69,376 KB
testcase_20 AC 73 ms
72,192 KB
testcase_21 AC 81 ms
76,032 KB
testcase_22 AC 48 ms
57,984 KB
testcase_23 AC 88 ms
76,544 KB
testcase_24 AC 101 ms
78,976 KB
testcase_25 AC 81 ms
75,904 KB
testcase_26 AC 60 ms
63,616 KB
testcase_27 AC 66 ms
65,536 KB
testcase_28 AC 46 ms
57,088 KB
testcase_29 AC 45 ms
57,216 KB
testcase_30 AC 46 ms
57,472 KB
testcase_31 AC 45 ms
57,088 KB
testcase_32 AC 46 ms
57,472 KB
testcase_33 AC 48 ms
57,856 KB
testcase_34 AC 176 ms
84,992 KB
testcase_35 AC 176 ms
85,504 KB
testcase_36 AC 46 ms
57,728 KB
testcase_37 AC 186 ms
85,248 KB
testcase_38 AC 179 ms
85,504 KB
testcase_39 AC 207 ms
85,376 KB
testcase_40 AC 174 ms
85,248 KB
testcase_41 AC 179 ms
85,376 KB
testcase_42 AC 182 ms
85,120 KB
testcase_43 AC 160 ms
85,120 KB
testcase_44 AC 155 ms
84,992 KB
testcase_45 AC 46 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
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