結果

問題 No.2929 Miracle Branch
ユーザー ntudantuda
提出日時 2024-10-13 22:06:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,084 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 94,572 KB
最終ジャッジ日時 2024-10-13 22:06:13
合計ジャッジ時間 11,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 44 ms
57,856 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 66 ms
69,632 KB
testcase_19 AC 71 ms
70,016 KB
testcase_20 WA -
testcase_21 AC 79 ms
75,960 KB
testcase_22 WA -
testcase_23 AC 81 ms
76,568 KB
testcase_24 AC 106 ms
80,920 KB
testcase_25 AC 74 ms
76,236 KB
testcase_26 WA -
testcase_27 AC 59 ms
65,920 KB
testcase_28 AC 46 ms
58,112 KB
testcase_29 AC 47 ms
57,600 KB
testcase_30 AC 47 ms
58,240 KB
testcase_31 AC 46 ms
57,344 KB
testcase_32 AC 46 ms
57,472 KB
testcase_33 AC 44 ms
57,600 KB
testcase_34 AC 196 ms
94,036 KB
testcase_35 AC 193 ms
93,900 KB
testcase_36 AC 43 ms
57,832 KB
testcase_37 AC 201 ms
94,208 KB
testcase_38 AC 191 ms
94,332 KB
testcase_39 AC 190 ms
94,572 KB
testcase_40 AC 234 ms
94,192 KB
testcase_41 AC 189 ms
94,464 KB
testcase_42 AC 205 ms
93,952 KB
testcase_43 WA -
testcase_44 AC 168 ms
93,952 KB
testcase_45 AC 41 ms
57,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
INF = 2 * 10 ** 5


def make_divisors(n):
    divisors = []
    i = 2
    while i <= INF and i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
        i += 1
    return divisors


condition = []
ans = INF + 10
# 茶色1個
if X + 1 < INF:
    ans = X + 1
    condition = (1, (X,))
# 茶色2個
D = make_divisors(X)
for d in D:
    tmp = (2 + d + X // d)
    if ans > tmp:
        ans = tmp
        condition = (2, (d, X // d))
# 茶色3個
ND = len(D)

for i in range(ND):
    for j in range(i, ND):
        if X % (D[i] * D[j]) == 0:
            d1 = D[i]
            d2 = D[j]
            d3 = X // d1 // d2
            tmp = 3 + d1 + d2 + d3
            if ans > tmp:
                ans = tmp
                condition = (3, (d1, d2, d3))
if ans > INF:
    print(-1)
    exit()
b, D = condition
UV = []
tmp = b
for i in range(b):
    if i > 0:
        UV.append((0, i))
    for d in range(D[i]):
        UV.append((i, tmp))
        tmp += 1
else:
    print(ans)
for u, v in UV:
    print(u + 1, v + 1)
C = ["b"] * b + ["g"] * (ans - b)
print(*C)
0