結果

問題 No.378 名声値を稼ごう
ユーザー subsnsubsn
提出日時 2023-06-15 17:21:09
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 187 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 28,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-23 16:29:20
合計ジャッジ時間 3,568 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdint.h>
int main()
{
	int c = 0;
	uint64_t n;
	scanf("%llu",&n);
	for (;;) {
		if (n % 2 == 1) c++;
		n /= 2;
		if (n == 1) break;
	}
	printf("%d\n",c+1);
}
0