結果
| 問題 | No.2939 Sigma Popcount Problem |
| コンテスト | |
| ユーザー |
Common Lisp
|
| 提出日時 | 2024-10-19 07:23:54 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 203 ms / 2,000 ms |
| コード長 | 408 bytes |
| 記録 | |
| コンパイル時間 | 692 ms |
| コンパイル使用メモリ | 34,904 KB |
| 実行使用メモリ | 32,400 KB |
| 最終ジャッジ日時 | 2026-05-05 16:41:27 |
| 合計ジャッジ時間 | 3,562 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 05 MAY 2026 04:41:23 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.017
ソースコード
(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)
Common Lisp