結果

問題 No.376 立方体のN等分 (2)
ユーザー convexineqconvexineq
提出日時 2021-02-22 06:41:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 499 ms / 5,000 ms
コード長 513 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,596 KB
実行使用メモリ 68,852 KB
最終ジャッジ日時 2024-09-20 03:29:33
合計ジャッジ時間 8,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,688 KB
testcase_01 AC 35 ms
52,568 KB
testcase_02 AC 155 ms
57,532 KB
testcase_03 AC 154 ms
61,568 KB
testcase_04 AC 172 ms
59,240 KB
testcase_05 AC 35 ms
51,824 KB
testcase_06 AC 35 ms
52,128 KB
testcase_07 AC 35 ms
52,412 KB
testcase_08 AC 43 ms
57,780 KB
testcase_09 AC 67 ms
58,868 KB
testcase_10 AC 115 ms
65,520 KB
testcase_11 AC 96 ms
57,380 KB
testcase_12 AC 114 ms
58,184 KB
testcase_13 AC 118 ms
57,720 KB
testcase_14 AC 129 ms
58,352 KB
testcase_15 AC 137 ms
57,712 KB
testcase_16 AC 423 ms
68,248 KB
testcase_17 AC 155 ms
58,856 KB
testcase_18 AC 163 ms
57,940 KB
testcase_19 AC 171 ms
60,204 KB
testcase_20 AC 170 ms
58,232 KB
testcase_21 AC 460 ms
68,852 KB
testcase_22 AC 165 ms
57,672 KB
testcase_23 AC 463 ms
68,368 KB
testcase_24 AC 457 ms
67,476 KB
testcase_25 AC 176 ms
59,408 KB
testcase_26 AC 499 ms
68,328 KB
testcase_27 AC 176 ms
58,872 KB
testcase_28 AC 173 ms
58,008 KB
testcase_29 AC 178 ms
57,600 KB
testcase_30 AC 180 ms
58,448 KB
testcase_31 AC 175 ms
58,060 KB
testcase_32 AC 178 ms
57,852 KB
testcase_33 AC 182 ms
57,752 KB
testcase_34 AC 174 ms
57,984 KB
testcase_35 AC 177 ms
58,324 KB
testcase_36 AC 171 ms
58,296 KB
testcase_37 AC 170 ms
58,580 KB
testcase_38 AC 174 ms
57,740 KB
testcase_39 AC 176 ms
58,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_list(N): #約数のリスト
    if N == 1: return [1]
    res = []
    for i in range(1,N):
        if i*i >= N: break
        if N%i == 0:
            res.append(i)
            res.append(N//i)
    if i*i == N: res.append(i)
    return sorted(res)

n = int(input())
a = divisor_list(n)
L = len(a)
ans = n
for i in range(L):
    for j in range(i,L):
        if n//a[i]//a[j] < a[j]: break
        if n//a[i]%a[j]: continue
        k = n//a[i]//a[j]
        ans = min(ans,a[i]+a[j]+k-3)
print(ans,n-1)
0