結果

問題 No.2939 Sigma Popcount Problem
ユーザー osada-yumosada-yum
提出日時 2024-11-10 01:56:29
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 983 bytes
コンパイル時間 1,317 ms
コンパイル使用メモリ 31,488 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-10 01:56:32
合計ジャッジ時間 3,473 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 108 ms
5,248 KB
testcase_09 AC 43 ms
5,248 KB
testcase_10 AC 60 ms
5,248 KB
testcase_11 AC 61 ms
5,248 KB
testcase_12 AC 52 ms
5,248 KB
testcase_13 AC 44 ms
5,248 KB
testcase_14 AC 39 ms
5,248 KB
testcase_15 AC 112 ms
5,248 KB
testcase_16 AC 3 ms
5,248 KB
testcase_17 AC 108 ms
5,248 KB
testcase_18 AC 81 ms
5,248 KB
testcase_19 AC 119 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

!> This file was processed by `fypp`.
!> Today's fortune: "forever WJ...", really OK?
!> ランダムウォーク猿「'シュタイナー木' で はっぴー.」
!> ギャンブラー猿「AtCoder はゲームだ.」
program f902939
  use, intrinsic :: iso_fortran_env
  !> auto use module
  implicit none
  integer(int32) :: t
  integer(int32) :: i
  read(input_unit, *) t
  do i = 1, t
     call solve()
  end do
contains
  impure subroutine solve()
    integer(int32), parameter :: maxi_b = 40
    integer(int64) :: n
    integer(int64) :: ans
    integer(int32) :: i
    read(input_unit, *) n
    ans = 0_int64
    do i = 0, maxi_b
       ! write(error_unit, *) i, ans
       if (n / ishft(1_int64, i) == 0_int64) exit
       ans = ans + &
            & ishft(1_int64, i) * (n / ishft(1_int64, i + 1)) + &
            & max(0_int64, mod(n, ishft(1_int64, i + 1)) - ishft(1_int64, i) + 1)
    end do
    write(output_unit, '(i0)') ans
  end subroutine solve
end program f902939
0