結果
問題 |
No.2853 A + B Problem
|
ユーザー |
![]() |
提出日時 | 2024-08-25 13:40:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 74 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 54,092 KB |
最終ジャッジ日時 | 2024-08-25 13:40:40 |
合計ジャッジ時間 | 2,220 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 WA * 26 |
ソースコード
n = int(input()) c = n.bit_count() if c <= 1: print(0) else: print(2**c)