結果

問題 No.2224 UFO Game
ユーザー maron8676maron8676
提出日時 2023-02-24 21:23:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 86,884 KB
実行使用メモリ 71,668 KB
最終ジャッジ日時 2023-10-11 05:44:47
合計ジャッジ時間 2,470 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
71,592 KB
testcase_01 AC 94 ms
71,432 KB
testcase_02 AC 95 ms
71,308 KB
testcase_03 AC 96 ms
71,252 KB
testcase_04 AC 94 ms
71,668 KB
testcase_05 AC 95 ms
71,588 KB
testcase_06 AC 93 ms
71,404 KB
testcase_07 AC 94 ms
71,400 KB
testcase_08 AC 92 ms
71,588 KB
testcase_09 AC 95 ms
71,636 KB
testcase_10 AC 95 ms
71,540 KB
testcase_11 AC 96 ms
71,628 KB
testcase_12 AC 96 ms
71,592 KB
testcase_13 AC 96 ms
71,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from sys import stdin

readline = stdin.readline


def li():
    return list(map(int, readline().split()))


S = input()
if S[0] != 'x':
    print(S)
else:
    s = int(S[1:])
    print((1 << 32) - s)
0