結果
| 問題 | No.2224 UFO Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-02-24 22:03:56 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 99 ms / 2,000 ms |
| + 479µs | |
| コード長 | 356 bytes |
| 記録 | |
| コンパイル時間 | 237 ms |
| コンパイル使用メモリ | 95,724 KB |
| 実行使用メモリ | 84,864 KB |
| 最終ジャッジ日時 | 2026-08-25 23:10:35 |
| 合計ジャッジ時間 | 2,939 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log
input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())
S = input()
if "x" in S:
print(2**32-int(S[1:]))
else:
print(int(S))