結果
問題 | No.2853 A + B Problem |
ユーザー | Basin-Bug |
提出日時 | 2024-08-25 13:53:49 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 37 ms / 2,000 ms |
コード長 | 101 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 82,528 KB |
実行使用メモリ | 53,960 KB |
最終ジャッジ日時 | 2024-08-25 13:54:01 |
合計ジャッジ時間 | 2,219 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
N = int(input()) cnt = 0 while N != 0: if N % 2 == 1: cnt += 1 N //= 2 print(2 ** cnt - 2)