結果

問題 No.2224 UFO Game
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-02-24 21:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 53,496 KB
最終ジャッジ日時 2024-09-13 04:58:12
合計ジャッジ時間 1,399 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,084 KB
testcase_01 AC 36 ms
53,472 KB
testcase_02 AC 36 ms
52,152 KB
testcase_03 AC 36 ms
52,672 KB
testcase_04 AC 35 ms
52,896 KB
testcase_05 AC 37 ms
52,704 KB
testcase_06 AC 35 ms
52,920 KB
testcase_07 AC 37 ms
52,216 KB
testcase_08 AC 36 ms
51,628 KB
testcase_09 AC 36 ms
52,908 KB
testcase_10 AC 36 ms
53,496 KB
testcase_11 AC 35 ms
53,372 KB
testcase_12 AC 37 ms
52,540 KB
testcase_13 AC 36 ms
52,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

if S[0] != "x":
    print (S)
else:

    S = int(S[1:])

    print (2**32 - S)
0