結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 46 ms
57,600 KB
testcase_02 AC 45 ms
57,344 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 78 ms
70,528 KB
testcase_19 AC 72 ms
71,680 KB
testcase_20 AC 88 ms
76,544 KB
testcase_21 AC 83 ms
76,544 KB
testcase_22 WA -
testcase_23 AC 86 ms
77,312 KB
testcase_24 AC 112 ms
84,516 KB
testcase_25 WA -
testcase_26 AC 63 ms
63,616 KB
testcase_27 AC 71 ms
65,664 KB
testcase_28 AC 46 ms
57,600 KB
testcase_29 AC 45 ms
57,984 KB
testcase_30 AC 44 ms
57,600 KB
testcase_31 AC 44 ms
57,728 KB
testcase_32 AC 42 ms
57,856 KB
testcase_33 AC 50 ms
57,984 KB
testcase_34 AC 189 ms
105,328 KB
testcase_35 AC 181 ms
105,084 KB
testcase_36 AC 48 ms
57,856 KB
testcase_37 AC 184 ms
105,464 KB
testcase_38 AC 195 ms
105,456 KB
testcase_39 AC 186 ms
105,080 KB
testcase_40 AC 181 ms
105,332 KB
testcase_41 AC 184 ms
105,452 KB
testcase_42 AC 185 ms
105,576 KB
testcase_43 AC 185 ms
105,148 KB
testcase_44 AC 187 ms
105,528 KB
testcase_45 AC 51 ms
57,344 KB
権限があれば一括ダウンロードができます

ソースコード

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 len(prime)+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