結果

問題 No.2929 Miracle Branch
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-06-12 14:16:29
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 365 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 84,332 KB
最終ジャッジ日時 2024-07-09 20:50:41
合計ジャッジ時間 7,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 49 ms
57,764 KB
testcase_02 AC 45 ms
58,480 KB
testcase_03 AC 48 ms
59,172 KB
testcase_04 AC 48 ms
59,340 KB
testcase_05 AC 70 ms
60,448 KB
testcase_06 AC 47 ms
60,160 KB
testcase_07 AC 48 ms
58,768 KB
testcase_08 AC 47 ms
59,680 KB
testcase_09 AC 48 ms
58,740 KB
testcase_10 AC 48 ms
60,096 KB
testcase_11 AC 50 ms
58,728 KB
testcase_12 AC 47 ms
58,668 KB
testcase_13 AC 48 ms
59,332 KB
testcase_14 AC 49 ms
59,580 KB
testcase_15 AC 48 ms
58,720 KB
testcase_16 AC 49 ms
58,912 KB
testcase_17 AC 48 ms
59,560 KB
testcase_18 AC 67 ms
68,964 KB
testcase_19 AC 68 ms
71,624 KB
testcase_20 AC 69 ms
74,448 KB
testcase_21 AC 76 ms
76,468 KB
testcase_22 AC 49 ms
59,156 KB
testcase_23 AC 77 ms
76,576 KB
testcase_24 AC 97 ms
78,640 KB
testcase_25 AC 73 ms
76,496 KB
testcase_26 AC 58 ms
64,172 KB
testcase_27 AC 62 ms
66,724 KB
testcase_28 AC 56 ms
58,352 KB
testcase_29 AC 48 ms
59,368 KB
testcase_30 AC 45 ms
57,784 KB
testcase_31 AC 46 ms
59,524 KB
testcase_32 AC 46 ms
58,316 KB
testcase_33 WA -
testcase_34 AC 164 ms
84,332 KB
testcase_35 AC 152 ms
83,948 KB
testcase_36 WA -
testcase_37 AC 192 ms
83,916 KB
testcase_38 AC 157 ms
83,952 KB
testcase_39 AC 157 ms
83,804 KB
testcase_40 AC 160 ms
83,696 KB
testcase_41 AC 151 ms
83,696 KB
testcase_42 AC 151 ms
83,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X=int(input())
g=[]
while X%4==0:
    g.append(4)
    X//=4
for i in range(2,200000):
    while X%i==0:
        g.append(i)
        X//=i
if X!=1:
    print(-1)
    exit()
print(sum(g)+len(g))
c=["b"]*len(g)+["g"]*sum(g)
pos=len(g)+1
for i in range(len(g)):
    if i!=0:
        print(i,i+1)
    for j in range(g[i]):
        print(i+1,pos)
        pos+=1
print(*c)
0