結果

問題 No.3150 count X which satisfies with equlation
ユーザー moon17
提出日時 2025-05-20 23:08:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 53 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2025-05-20 23:08:40
合計ジャッジ時間 3,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
print(bin(a).count('1'))
0