結果

問題 No.2939 Sigma Popcount Problem
ユーザー Common Lisp
提出日時 2024-10-19 07:23:54
言語 Common Lisp
(sbcl 2.5.0)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 32,680 KB
実行使用メモリ 29,988 KB
最終ジャッジ日時 2024-10-19 07:24:01
合計ジャッジ時間 5,664 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 19 OCT 2024 07:23:54 AM):

; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.005

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((query (read)))
    (dotimes (_ query)
      (let* ((n (read))
             (a 0))
        (loop for i = 1 then (* i 2)
              while (<= i n)
              do (incf a (* i (floor n (* i 2))))
                 (incf a (max 0 (- (mod n (* i 2)) i)))
              finally (incf a (logcount n)))
        (princ a)
        (terpri)))))
(main)
0