結果

問題 No.376 立方体のN等分 (2)
ユーザー maspymaspy
提出日時 2020-03-07 04:27:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 334 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 828,776 KB
最終ジャッジ日時 2024-10-14 11:10:14
合計ジャッジ時間 15,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 725 ms
208,004 KB
testcase_01 AC 697 ms
207,848 KB
testcase_02 AC 698 ms
207,724 KB
testcase_03 AC 712 ms
207,576 KB
testcase_04 AC 706 ms
207,588 KB
testcase_05 AC 706 ms
207,688 KB
testcase_06 AC 701 ms
207,924 KB
testcase_07 AC 697 ms
208,036 KB
testcase_08 AC 701 ms
207,364 KB
testcase_09 AC 695 ms
207,828 KB
testcase_10 AC 943 ms
295,060 KB
testcase_11 AC 694 ms
207,600 KB
testcase_12 AC 694 ms
207,768 KB
testcase_13 AC 701 ms
208,208 KB
testcase_14 AC 700 ms
207,920 KB
testcase_15 AC 693 ms
208,072 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N = int(read())

x = np.arange(1, 10**7, dtype=np.int64)

div = x[N % x == 0]

x, y = np.meshgrid(div, div)
z, r = np.divmod(N, x * y)
ind = r == 0
T = (x + y + z - 3)[ind]

print(T.min(), T.max())
0