結果

問題 No.2929 Miracle Branch
ユーザー rururunrururun
提出日時 2024-11-15 15:42:35
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 12,036 ms
コンパイル使用メモリ 125,200 KB
実行使用メモリ 15,260 KB
最終ジャッジ日時 2024-11-15 15:42:58
合計ジャッジ時間 22,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,344 KB
testcase_01 AC 9 ms
9,344 KB
testcase_02 AC 9 ms
9,216 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 10 ms
9,344 KB
testcase_19 AC 11 ms
9,344 KB
testcase_20 AC 10 ms
9,344 KB
testcase_21 AC 14 ms
9,244 KB
testcase_22 WA -
testcase_23 AC 17 ms
9,344 KB
testcase_24 AC 41 ms
10,752 KB
testcase_25 WA -
testcase_26 AC 9 ms
9,216 KB
testcase_27 AC 10 ms
9,088 KB
testcase_28 AC 10 ms
8,960 KB
testcase_29 AC 11 ms
9,344 KB
testcase_30 AC 10 ms
9,216 KB
testcase_31 AC 10 ms
9,216 KB
testcase_32 AC 11 ms
9,088 KB
testcase_33 AC 10 ms
9,216 KB
testcase_34 AC 121 ms
15,104 KB
testcase_35 AC 110 ms
14,976 KB
testcase_36 AC 10 ms
9,088 KB
testcase_37 AC 111 ms
15,168 KB
testcase_38 AC 111 ms
15,204 KB
testcase_39 AC 110 ms
15,176 KB
testcase_40 AC 110 ms
15,052 KB
testcase_41 AC 111 ms
15,104 KB
testcase_42 AC 124 ms
15,260 KB
testcase_43 AC 112 ms
14,996 KB
testcase_44 AC 110 ms
15,124 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

var x = Int(readLine()!)!
var pr = [Int](), n = -1
for i in 2...200000{
    while x % i == 0{
        x /= i
        pr.append(i)
    }
}
if x == 1{
    if pr.count == 0{
        pr.append(1)
    }
    let s = pr.reduce(0,+)
    if s <= 200000{
        n = s+pr.count
    }
}
let k = pr.count

print(n)
if n != -1{
    if n > 2{
    for i in 1..<k{
        print("\(i) \(i+1)")
    }
    }
    var l = k+1
    for i in 1...k{
        for j in l..<l+pr[i-1]{
            print("\(i) \(j)")
        }
        l = l + pr[i-1]
    }
    let c = [String](repeating:"b",count:k) + [String](repeating:"g",count:n-k)
    let nc = c.joined(separator:" ")
    print(nc)
}
0