結果

問題 No.375 立方体のN等分 (1)
ユーザー AttomakeAttomake
提出日時 2020-04-05 20:08:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,666 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-04 01:51:31
合計ジャッジ時間 13,595 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 487 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 33 ms
10,880 KB
testcase_07 AC 88 ms
10,752 KB
testcase_08 AC 330 ms
10,880 KB
testcase_09 AC 91 ms
10,752 KB
testcase_10 AC 166 ms
10,624 KB
testcase_11 AC 151 ms
10,880 KB
testcase_12 AC 188 ms
10,752 KB
testcase_13 AC 188 ms
10,752 KB
testcase_14 AC 1,139 ms
10,624 KB
testcase_15 AC 251 ms
10,624 KB
testcase_16 AC 197 ms
10,752 KB
testcase_17 AC 1,938 ms
10,752 KB
testcase_18 AC 1,209 ms
10,624 KB
testcase_19 AC 257 ms
10,624 KB
testcase_20 AC 156 ms
10,624 KB
testcase_21 AC 154 ms
10,624 KB
testcase_22 AC 2,666 ms
10,624 KB
testcase_23 AC 212 ms
10,880 KB
testcase_24 AC 161 ms
10,880 KB
testcase_25 AC 446 ms
10,752 KB
testcase_26 AC 196 ms
10,880 KB
testcase_27 AC 264 ms
10,880 KB
testcase_28 AC 157 ms
10,624 KB
testcase_29 AC 159 ms
10,752 KB
testcase_30 AC 210 ms
10,880 KB
testcase_31 AC 229 ms
10,880 KB
testcase_32 AC 152 ms
10,752 KB
testcase_33 AC 210 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

kiroku=N-1
for i in range(int(N**0.5)+1):
    if N%(i+1)!=0:
        continue
    n=int(N/(i+1))
    for j in range(int(n**0.5)+1):
        if n%(j+1)!=0:
            continue
        unta=i+j+int(n/(j+1))-1
        if unta<kiroku:
            kiroku=unta

print(str(kiroku),str(N-1))
0