結果

問題 No.2224 UFO Game
ユーザー maron8676maron8676
提出日時 2023-02-24 21:23:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 55,096 KB
最終ジャッジ日時 2024-09-13 04:59:59
合計ジャッジ時間 1,440 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,176 KB
testcase_01 AC 39 ms
54,860 KB
testcase_02 AC 41 ms
54,796 KB
testcase_03 AC 40 ms
53,988 KB
testcase_04 AC 41 ms
53,244 KB
testcase_05 AC 41 ms
53,540 KB
testcase_06 AC 43 ms
54,360 KB
testcase_07 AC 41 ms
53,400 KB
testcase_08 AC 41 ms
54,148 KB
testcase_09 AC 39 ms
54,960 KB
testcase_10 AC 41 ms
54,216 KB
testcase_11 AC 42 ms
54,140 KB
testcase_12 AC 40 ms
55,096 KB
testcase_13 AC 41 ms
54,728 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