結果
問題 | No.376 立方体のN等分 (2) |
ユーザー | pluto77 |
提出日時 | 2017-03-02 09:34:12 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 202 bytes |
コンパイル時間 | 1,916 ms |
コンパイル使用メモリ | 76,724 KB |
実行使用メモリ | 153,128 KB |
最終ジャッジ日時 | 2024-06-13 01:14:18 |
合計ジャッジ時間 | 14,415 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
153,128 KB |
testcase_01 | AC | 63 ms
75,552 KB |
testcase_02 | AC | 562 ms
76,612 KB |
testcase_03 | AC | 1,156 ms
77,472 KB |
testcase_04 | AC | 778 ms
76,828 KB |
testcase_05 | AC | 66 ms
75,656 KB |
testcase_06 | AC | 65 ms
75,408 KB |
testcase_07 | AC | 66 ms
75,676 KB |
testcase_08 | AC | 77 ms
76,440 KB |
testcase_09 | AC | 109 ms
77,056 KB |
testcase_10 | AC | 1,022 ms
77,600 KB |
testcase_11 | AC | 228 ms
76,708 KB |
testcase_12 | AC | 497 ms
77,180 KB |
testcase_13 | AC | 217 ms
76,840 KB |
testcase_14 | AC | 283 ms
76,956 KB |
testcase_15 | AC | 175 ms
76,600 KB |
testcase_16 | TLE | - |
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 | -- | - |
ソースコード
#yuki375 import math n=int(raw_input()) temp=n i=1 while i**3<=n: if n%i==0: m=n/i j=1 while j*j<=m: if m%j==0: k=m/j if temp>i+j+k-3: temp=i+j+k-3 j+=1 i+=1 print temp,n-1