結果

問題 No.375 立方体のN等分 (1)
ユーザー tookunn_1213tookunn_1213
提出日時 2016-06-06 10:55:17
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 221 ms / 5,000 ms
コード長 142 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 76,928 KB
実行使用メモリ 77,864 KB
最終ジャッジ日時 2024-10-11 21:05:06
合計ジャッジ時間 5,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,368 KB
testcase_01 AC 74 ms
75,648 KB
testcase_02 AC 91 ms
77,564 KB
testcase_03 AC 73 ms
75,656 KB
testcase_04 AC 73 ms
75,648 KB
testcase_05 AC 73 ms
75,532 KB
testcase_06 AC 75 ms
76,544 KB
testcase_07 AC 79 ms
76,544 KB
testcase_08 AC 94 ms
77,864 KB
testcase_09 AC 76 ms
76,180 KB
testcase_10 AC 78 ms
76,060 KB
testcase_11 AC 78 ms
76,416 KB
testcase_12 AC 78 ms
76,288 KB
testcase_13 AC 80 ms
76,452 KB
testcase_14 AC 102 ms
77,592 KB
testcase_15 AC 78 ms
76,792 KB
testcase_16 AC 77 ms
76,416 KB
testcase_17 AC 149 ms
77,832 KB
testcase_18 AC 103 ms
77,832 KB
testcase_19 AC 81 ms
76,080 KB
testcase_20 AC 79 ms
76,296 KB
testcase_21 AC 79 ms
76,288 KB
testcase_22 AC 221 ms
77,844 KB
testcase_23 AC 82 ms
76,672 KB
testcase_24 AC 81 ms
76,704 KB
testcase_25 AC 86 ms
77,468 KB
testcase_26 AC 81 ms
76,568 KB
testcase_27 AC 79 ms
76,180 KB
testcase_28 AC 80 ms
76,672 KB
testcase_29 AC 79 ms
76,400 KB
testcase_30 AC 79 ms
76,672 KB
testcase_31 AC 80 ms
76,332 KB
testcase_32 AC 80 ms
76,416 KB
testcase_33 AC 80 ms
76,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input();m,y,i=40**9,{},1
while i*i<=N:
 if N%i==0:y[i]=i
 i+=1
for a in y:
 for b in y:
   if N%(a*b)==0:m=min(m,a+b+N//(a*b)-3)
print m,N-1
0