結果
問題 | No.2929 Miracle Branch |
ユーザー | ntuda |
提出日時 | 2024-10-13 20:51:58 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 957 bytes |
コンパイル時間 | 477 ms |
コンパイル使用メモリ | 81,980 KB |
実行使用メモリ | 566,604 KB |
最終ジャッジ日時 | 2024-10-13 20:52:03 |
合計ジャッジ時間 | 5,112 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,344 KB |
testcase_01 | AC | 36 ms
52,352 KB |
testcase_02 | RE | - |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
X = int(input()) def make_divisors(n): divisors = [] # 必要に応じてsetにしても良いかも i = 1 while i <= 2 * 10 ** 5 and i ** 2 <= n: if n % i == 0: divisors.append(i) i += 1 return divisors condition = [] # 茶色1個 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個 D1 = make_divisors(X) for d1 in D1: D2 = make_divisors(X // d1) for d2 in D2: tmp = 3 + d1 + d2 + X // d1 // d2 if ans > tmp: ans = tmp condition = (3, (d1, d2, X // d1 // d2)) b, D = condition C = ["b"] * b + ["g"] * (ans - b) 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 print(ans) for u, v in UV: print(u + 1, v + 1) print(*C)