結果

問題 No.375 立方体のN等分 (1)
ユーザー jjjj
提出日時 2016-08-04 00:36:36
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 31,616 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 15:16:12
合計ジャッジ時間 1,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 21 ms
5,248 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 45 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 82 ms
5,376 KB
testcase_18 AC 55 ms
5,376 KB
testcase_19 AC 10 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 107 ms
5,376 KB
testcase_23 AC 8 ms
5,376 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 19 ms
5,376 KB
testcase_26 AC 6 ms
5,376 KB
testcase_27 AC 10 ms
5,376 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 6 ms
5,376 KB
testcase_31 AC 8 ms
5,376 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 7 ms
5,376 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=1, num
     if(MOD(N,i).ne.0) cycle
     M = N/i
     num2 = CEILING(SQRT(DBLE(M)))
     do j=1,num2
        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