結果

問題 No.1298 OR XOR
ユーザー ygd.ygd.
提出日時 2020-11-27 21:32:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 53,660 KB
最終ジャッジ日時 2024-07-23 22:15:21
合計ジャッジ時間 1,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,052 KB
testcase_01 AC 38 ms
53,660 KB
testcase_02 AC 38 ms
52,688 KB
testcase_03 AC 37 ms
52,684 KB
testcase_04 AC 36 ms
52,548 KB
testcase_05 AC 36 ms
52,364 KB
testcase_06 AC 37 ms
53,536 KB
testcase_07 AC 38 ms
52,216 KB
testcase_08 AC 37 ms
52,468 KB
testcase_09 AC 37 ms
52,392 KB
testcase_10 AC 37 ms
52,872 KB
testcase_11 AC 38 ms
52,120 KB
testcase_12 AC 38 ms
52,892 KB
testcase_13 AC 38 ms
52,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
BN = format(N, 'b')
M = len(BN)
cnt = 0
for i in range(M):
    if BN[i] == "1":
        cnt += 1
if cnt  <= 1:
    ans = [-1,-1,-1]
    print(*ans)
else:
    A = 0; B =0; C = 0
    check = 0
    for i in range(M):
        if BN[i] == "0":
            continue
        keta = pow(2,M-1-i)
        if check == 0:
            A += keta; B += keta
            check += 1
        else:
            A += keta; C += keta
    ans = {A,B,C}
    print(*ans)
0