結果

問題 No.376 立方体のN等分 (2)
ユーザー 👑 rin204rin204
提出日時 2022-03-23 16:29:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,660 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 106,160 KB
最終ジャッジ日時 2024-10-11 19:28:49
合計ジャッジ時間 22,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,512 KB
testcase_01 AC 38 ms
52,512 KB
testcase_02 AC 157 ms
60,840 KB
testcase_03 AC 160 ms
64,452 KB
testcase_04 AC 174 ms
62,312 KB
testcase_05 AC 38 ms
52,248 KB
testcase_06 AC 37 ms
53,500 KB
testcase_07 AC 37 ms
53,156 KB
testcase_08 AC 45 ms
58,172 KB
testcase_09 AC 66 ms
58,616 KB
testcase_10 AC 309 ms
75,928 KB
testcase_11 AC 98 ms
58,720 KB
testcase_12 AC 121 ms
62,104 KB
testcase_13 AC 121 ms
58,996 KB
testcase_14 AC 129 ms
58,092 KB
testcase_15 AC 137 ms
58,184 KB
testcase_16 AC 2,642 ms
77,480 KB
testcase_17 AC 154 ms
59,236 KB
testcase_18 AC 155 ms
58,596 KB
testcase_19 AC 165 ms
61,784 KB
testcase_20 AC 163 ms
58,012 KB
testcase_21 AC 3,498 ms
77,616 KB
testcase_22 AC 167 ms
58,800 KB
testcase_23 AC 3,660 ms
77,580 KB
testcase_24 AC 2,644 ms
77,588 KB
testcase_25 AC 172 ms
59,248 KB
testcase_26 AC 3,067 ms
106,160 KB
testcase_27 AC 171 ms
58,032 KB
testcase_28 AC 169 ms
58,244 KB
testcase_29 AC 173 ms
58,232 KB
testcase_30 AC 174 ms
59,288 KB
testcase_31 AC 173 ms
58,156 KB
testcase_32 AC 173 ms
59,160 KB
testcase_33 AC 173 ms
60,084 KB
testcase_34 AC 173 ms
58,380 KB
testcase_35 AC 173 ms
58,232 KB
testcase_36 AC 173 ms
59,448 KB
testcase_37 AC 174 ms
57,904 KB
testcase_38 AC 174 ms
58,444 KB
testcase_39 AC 173 ms
58,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
divs = []

for i in range(1, int(n ** 0.5 + 1)):
    if n % i == 0:
        divs.append(i)
        if i != n // i:
            divs.append(n // i)
divs.sort()
l = len(divs)
double = [0] * l
for i, d in enumerate(divs):
    double[i] = d - 1
    for j, d2 in enumerate(divs[:i]):
        if d % d2 == 0:
            double[i] = min(double[i], d2 + d // d2 - 2)

ans = n - 1
dic = {d:i for i, d in enumerate(divs)}
for d in divs:
    ans = min(ans, d - 1 + double[dic[n // d]])
print(ans, n - 1)    
0