結果

問題 No.375 立方体のN等分 (1)
ユーザー jjjj
提出日時 2016-08-04 00:24:20
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 109 ms / 5,000 ms
コード長 419 bytes
コンパイル時間 1,253 ms
コンパイル使用メモリ 31,104 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-06 23:46:36
合計ジャッジ時間 1,671 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 22 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 14 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 6 ms
5,248 KB
testcase_11 AC 6 ms
5,248 KB
testcase_12 AC 7 ms
5,248 KB
testcase_13 AC 7 ms
5,248 KB
testcase_14 AC 49 ms
5,248 KB
testcase_15 AC 11 ms
5,248 KB
testcase_16 AC 7 ms
5,248 KB
testcase_17 AC 84 ms
5,248 KB
testcase_18 AC 55 ms
5,248 KB
testcase_19 AC 10 ms
5,248 KB
testcase_20 AC 5 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 109 ms
5,248 KB
testcase_23 AC 8 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 19 ms
5,248 KB
testcase_26 AC 7 ms
5,248 KB
testcase_27 AC 11 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 4 ms
5,248 KB
testcase_30 AC 7 ms
5,248 KB
testcase_31 AC 9 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 8 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer*8::N,i,j,k,M
  integer*8::min_d,num,num2

  read *,N
  min_d = N+3

  num = CEILING(EXP(LOG(DBLE(N))/3.0_8))

  do i=num, 1, -1
     if(MOD(N,i).ne.0) cycle
     M = N/i
     num2 = CEILING(SQRT(DBLE(M)))
     do j=num2,1,-1
        if(MOD(M,j).ne.0) cycle
        k = M/j
        min_d = MIN(min_d,i+j+k)
     end do
  end do
  print '(i0," ",i0)',min_d-3, N-1

end program main
0