結果

問題 No.375 立方体のN等分 (1)
ユーザー vwxyzvwxyz
提出日時 2023-04-03 10:16:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,072 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-25 00:44:32
合計ジャッジ時間 11,317 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 105 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 44 ms
10,752 KB
testcase_08 AC 289 ms
10,624 KB
testcase_09 AC 57 ms
10,752 KB
testcase_10 AC 66 ms
10,752 KB
testcase_11 AC 67 ms
10,624 KB
testcase_12 AC 72 ms
10,752 KB
testcase_13 AC 76 ms
10,624 KB
testcase_14 AC 588 ms
10,624 KB
testcase_15 AC 82 ms
10,624 KB
testcase_16 AC 84 ms
10,624 KB
testcase_17 AC 2,249 ms
10,880 KB
testcase_18 AC 571 ms
10,624 KB
testcase_19 AC 87 ms
10,624 KB
testcase_20 AC 88 ms
10,752 KB
testcase_21 AC 88 ms
10,752 KB
testcase_22 AC 4,072 ms
10,752 KB
testcase_23 AC 90 ms
10,624 KB
testcase_24 AC 91 ms
10,752 KB
testcase_25 AC 113 ms
10,752 KB
testcase_26 AC 90 ms
10,752 KB
testcase_27 AC 93 ms
10,624 KB
testcase_28 AC 91 ms
10,752 KB
testcase_29 AC 90 ms
10,624 KB
testcase_30 AC 91 ms
10,752 KB
testcase_31 AC 90 ms
10,624 KB
testcase_32 AC 90 ms
10,624 KB
testcase_33 AC 91 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

def Divisors(N):
    divisors=[]
    for i in range(1,N+1):
        if i**2>=N:
            break
        elif N%i==0:
            divisors.append(i)
    if i**2==N:
        divisors+=[i]+[N//i for i in divisors[::-1]]
    else:
        divisors+=[N//i for i in divisors[::-1]]
    return divisors

N=int(readline())
ans=1<<60
D=Divisors(N)
for d0 in D:
    for d1 in D:
        if N%(d0*d1):
            continue
        d2=N//d0//d1
        ans=min(ans,d0+d1+d2-3)
print(ans,N-1)
0