結果

問題 No.378 名声値を稼ごう
ユーザー tentententen
提出日時 2020-09-29 18:28:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-07-04 02:53:07
合計ジャッジ時間 3,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,856 KB
testcase_01 AC 124 ms
53,996 KB
testcase_02 AC 126 ms
54,000 KB
testcase_03 AC 127 ms
54,252 KB
testcase_04 AC 124 ms
54,224 KB
testcase_05 AC 123 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        long count = 0;
        while (n > 0) {
            count += n % 2;
            n /= 2;
        }
        System.out.println(count);
    }
}
0