結果
問題 | No.2929 Miracle Branch |
ユーザー | hirayuu_yc |
提出日時 | 2024-06-12 15:13:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 399 bytes |
コンパイル時間 | 441 ms |
コンパイル使用メモリ | 82,024 KB |
実行使用メモリ | 78,196 KB |
最終ジャッジ日時 | 2024-06-12 15:13:21 |
合計ジャッジ時間 | 5,158 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,488 KB |
testcase_01 | AC | 41 ms
58,600 KB |
testcase_02 | AC | 42 ms
58,468 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 | 62 ms
70,672 KB |
testcase_19 | AC | 61 ms
70,588 KB |
testcase_20 | AC | 61 ms
73,040 KB |
testcase_21 | AC | 67 ms
75,996 KB |
testcase_22 | WA | - |
testcase_23 | AC | 75 ms
76,000 KB |
testcase_24 | AC | 94 ms
78,196 KB |
testcase_25 | WA | - |
testcase_26 | AC | 49 ms
63,680 KB |
testcase_27 | AC | 56 ms
65,540 KB |
ソースコード
X=int(input()) g=[] for i in range(2,200000): while X%i==0: g.append(i) X//=i if X!=1: print(-1) exit() if len(g)==0: g.append(1) if sum(g)+len(g)>200000: 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)