結果

問題 No.2929 Miracle Branch
ユーザー CecilCecil
提出日時 2024-10-14 17:01:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,808 KB
最終ジャッジ日時 2024-10-14 17:01:40
合計ジャッジ時間 11,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 42 ms
57,984 KB
testcase_02 AC 43 ms
57,728 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 72 ms
70,656 KB
testcase_19 AC 74 ms
71,936 KB
testcase_20 AC 79 ms
76,416 KB
testcase_21 AC 80 ms
76,800 KB
testcase_22 WA -
testcase_23 AC 88 ms
77,184 KB
testcase_24 AC 117 ms
84,244 KB
testcase_25 WA -
testcase_26 AC 59 ms
63,872 KB
testcase_27 AC 64 ms
65,920 KB
testcase_28 AC 46 ms
57,600 KB
testcase_29 AC 48 ms
57,216 KB
testcase_30 AC 43 ms
57,344 KB
testcase_31 AC 44 ms
57,344 KB
testcase_32 AC 47 ms
57,472 KB
testcase_33 AC 48 ms
57,984 KB
testcase_34 AC 186 ms
105,464 KB
testcase_35 AC 182 ms
105,460 KB
testcase_36 AC 47 ms
57,856 KB
testcase_37 AC 191 ms
105,336 KB
testcase_38 AC 185 ms
105,328 KB
testcase_39 AC 212 ms
105,332 KB
testcase_40 AC 187 ms
105,080 KB
testcase_41 AC 183 ms
105,200 KB
testcase_42 AC 208 ms
105,208 KB
testcase_43 AC 194 ms
105,404 KB
testcase_44 AC 183 ms
105,516 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

X = int(input())
prime = list()
if X!=1:
    while True:
        ok = False
        for i in range(2, 2*10**5+1):
            if X%i==0:
                ok = True
                X //= i
                prime.append(i)
                break
        if not ok:
            break
    if X!=1:
        prime.append(X)
    #print(prime)
else:
    prime.append(1)
if X>2*10**5 or sum(prime)>2*10**5:
    print(-1)
    exit()
N = len(prime)+sum(prime)
G = [ [] for _ in range(N+1)]
idx = len(prime)
for i in range(1, len(prime)+1):
    for j in range(prime[i-1]):
        idx += 1
        G[i].append(idx)
print(N)
for i in range(1, len(prime)):
    G[i].append(i+1)
for i in range(1, N+1):
    for j in G[i]:
        print(i,j)
col = list()
for i in range(len(prime)):
    col.append("b")
for i in range(sum(prime)):
    col.append("g")
print(*col)
0