結果
| 問題 |
No.1450 nahco314's First Problem
|
| コンテスト | |
| ユーザー |
👑 SPD_9X2
|
| 提出日時 | 2021-03-31 14:36:45 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 299 bytes |
| コンパイル時間 | 353 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 57,472 KB |
| 最終ジャッジ日時 | 2024-11-08 14:14:41 |
| 合計ジャッジ時間 | 3,876 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 36 WA * 1 |
ソースコード
"""
Mは高々30ぐらい
"""
import sys
from sys import stdin
def popcnt(a):
ret = 0
while a > 0:
ret += a % 2
a //= 2
return ret
X = int(stdin.readline())
for i in range(40):
N = X ^ i
if popcnt(N) == i:
print (N)
sys.exit()
print (-1)
SPD_9X2