結果

問題 No.376 立方体のN等分 (2)
ユーザー rpy3cpprpy3cpp
提出日時 2016-06-05 10:29:21
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 782 ms / 5,000 ms
コード長 466 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 76,932 KB
実行使用メモリ 77,864 KB
最終ジャッジ日時 2024-11-06 22:04:20
合計ジャッジ時間 9,684 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,792 KB
testcase_01 AC 77 ms
75,564 KB
testcase_02 AC 104 ms
77,380 KB
testcase_03 AC 90 ms
77,628 KB
testcase_04 AC 782 ms
77,628 KB
testcase_05 AC 76 ms
76,060 KB
testcase_06 AC 75 ms
75,556 KB
testcase_07 AC 77 ms
75,796 KB
testcase_08 AC 90 ms
76,556 KB
testcase_09 AC 87 ms
77,732 KB
testcase_10 AC 83 ms
76,728 KB
testcase_11 AC 248 ms
76,924 KB
testcase_12 AC 85 ms
77,476 KB
testcase_13 AC 238 ms
77,120 KB
testcase_14 AC 280 ms
77,608 KB
testcase_15 AC 199 ms
76,844 KB
testcase_16 AC 86 ms
76,828 KB
testcase_17 AC 84 ms
77,092 KB
testcase_18 AC 214 ms
76,972 KB
testcase_19 AC 88 ms
77,732 KB
testcase_20 AC 253 ms
76,688 KB
testcase_21 AC 84 ms
77,224 KB
testcase_22 AC 85 ms
76,856 KB
testcase_23 AC 84 ms
76,940 KB
testcase_24 AC 85 ms
76,716 KB
testcase_25 AC 84 ms
77,072 KB
testcase_26 AC 85 ms
76,940 KB
testcase_27 AC 315 ms
76,552 KB
testcase_28 AC 80 ms
76,936 KB
testcase_29 AC 454 ms
77,500 KB
testcase_30 AC 82 ms
76,728 KB
testcase_31 AC 211 ms
76,808 KB
testcase_32 AC 170 ms
76,792 KB
testcase_33 AC 208 ms
76,712 KB
testcase_34 AC 214 ms
76,560 KB
testcase_35 AC 390 ms
76,712 KB
testcase_36 AC 206 ms
76,676 KB
testcase_37 AC 207 ms
76,968 KB
testcase_38 AC 414 ms
76,956 KB
testcase_39 AC 103 ms
77,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input = raw_input
range = xrange
N = int(input())
record = N - 1
max_a = int(N**(1.0/3.0)) + 2
for a in range(max_a, 0, -1):
    if N % a:
        continue
    bc = N // a
    max_b = int(bc ** 0.5) + 1
    if max_b * 2 + a - 6 > record:
        break
    for b in range(max_b, 0, -1):
        if bc % b:
            continue
        c = bc // b
        score = a + b + c - 3
        if score < record:
            record = score
print('{} {}'.format(record, N - 1))
0