結果
問題 | No.375 立方体のN等分 (1) |
ユーザー | vwxyz |
提出日時 | 2023-04-03 10:16:29 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 527 bytes |
コンパイル時間 | 266 ms |
コンパイル使用メモリ | 82,580 KB |
実行使用メモリ | 83,036 KB |
最終ジャッジ日時 | 2024-09-25 00:44:20 |
合計ジャッジ時間 | 15,445 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,016 KB |
testcase_01 | AC | 35 ms
52,340 KB |
testcase_02 | AC | 1,207 ms
68,984 KB |
testcase_03 | AC | 36 ms
52,944 KB |
testcase_04 | AC | 36 ms
52,272 KB |
testcase_05 | AC | 38 ms
59,648 KB |
testcase_06 | AC | 39 ms
58,728 KB |
testcase_07 | AC | 103 ms
61,196 KB |
testcase_08 | AC | 1,249 ms
75,968 KB |
testcase_09 | AC | 49 ms
58,384 KB |
testcase_10 | AC | 83 ms
59,120 KB |
testcase_11 | AC | 86 ms
57,688 KB |
testcase_12 | AC | 95 ms
59,572 KB |
testcase_13 | AC | 83 ms
58,492 KB |
testcase_14 | AC | 4,944 ms
76,228 KB |
testcase_15 | AC | 187 ms
59,984 KB |
testcase_16 | AC | 106 ms
57,644 KB |
testcase_17 | TLE | - |
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 | -- | - |
ソースコード
import sys readline=sys.stdin.readline def Divisors(N): divisors=[] for i in range(1,N+1): if i**2>=N: break elif N%i==0: divisors.append(i) if i**2==N: divisors+=[i]+[N//i for i in divisors[::-1]] else: divisors+=[N//i for i in divisors[::-1]] return divisors N=int(readline()) ans=1<<60 for d0 in Divisors(N): for d1 in Divisors(N): if N%(d0*d1): continue d2=N//d0//d1 ans=min(ans,d0+d1+d2-3) print(ans,N-1)