結果

問題 No.376 立方体のN等分 (2)
ユーザー titiatitia
提出日時 2023-01-04 02:51:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,450 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 2,377 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 75,908 KB
最終ジャッジ日時 2024-11-27 05:47:56
合計ジャッジ時間 25,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,052 KB
testcase_01 AC 34 ms
53,620 KB
testcase_02 AC 146 ms
61,048 KB
testcase_03 AC 144 ms
65,164 KB
testcase_04 AC 160 ms
62,160 KB
testcase_05 AC 35 ms
52,156 KB
testcase_06 AC 34 ms
52,688 KB
testcase_07 AC 32 ms
52,884 KB
testcase_08 AC 40 ms
58,844 KB
testcase_09 AC 60 ms
57,592 KB
testcase_10 AC 316 ms
75,396 KB
testcase_11 AC 87 ms
58,608 KB
testcase_12 AC 116 ms
62,896 KB
testcase_13 AC 107 ms
57,644 KB
testcase_14 AC 118 ms
58,412 KB
testcase_15 AC 131 ms
57,928 KB
testcase_16 AC 3,818 ms
75,908 KB
testcase_17 AC 140 ms
60,900 KB
testcase_18 AC 141 ms
58,024 KB
testcase_19 AC 158 ms
62,300 KB
testcase_20 AC 144 ms
58,336 KB
testcase_21 AC 3,857 ms
75,444 KB
testcase_22 AC 151 ms
58,900 KB
testcase_23 AC 4,028 ms
75,580 KB
testcase_24 AC 3,884 ms
75,464 KB
testcase_25 AC 154 ms
59,040 KB
testcase_26 AC 4,450 ms
75,512 KB
testcase_27 AC 159 ms
57,672 KB
testcase_28 AC 164 ms
58,444 KB
testcase_29 AC 164 ms
58,016 KB
testcase_30 AC 161 ms
57,912 KB
testcase_31 AC 161 ms
58,276 KB
testcase_32 AC 162 ms
58,188 KB
testcase_33 AC 158 ms
58,080 KB
testcase_34 AC 156 ms
57,912 KB
testcase_35 AC 160 ms
58,748 KB
testcase_36 AC 162 ms
57,944 KB
testcase_37 AC 155 ms
57,916 KB
testcase_38 AC 156 ms
57,480 KB
testcase_39 AC 165 ms
60,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=int(input())

L=int(x**(1/2))

LIST=[]

for i in range(1,L+1):
    if x%i==0:
        LIST.append(i)
        LIST.append(x//i)


ANS=x

for a in LIST:
    for b in LIST:
        if a*b<=x and x%(a*b)==0:
            k=x//(a*b)
            ANS=min(ANS,a+b+k-3)

print(ANS,x-1)
0