結果
問題 | No.2224 UFO Game |
ユーザー | buey_t |
提出日時 | 2023-02-24 21:23:37 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 129 ms / 2,000 ms |
コード長 | 1,070 bytes |
コンパイル時間 | 208 ms |
コンパイル使用メモリ | 81,548 KB |
実行使用メモリ | 85,428 KB |
最終ジャッジ日時 | 2024-09-13 04:59:46 |
合計ジャッジ時間 | 2,829 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
def main(): try: import pypyjit pypyjit.set_param('max_unroll_recursion=-1') except: pass try: import sys sys.setrecursionlimit(10**7) except: pass from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum import heapq from bisect import bisect_left, bisect_right import copy from collections import deque,Counter,defaultdict from itertools import permutations,combinations from decimal import Decimal,ROUND_HALF_UP #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP) from functools import lru_cache, reduce #@lru_cache(maxsize=None) from operator import add,sub,mul,xor,and_,or_ INF = 10**18 mod1 = 10**9+7 mod2 = 998244353 #DecimalならPython S = input() if S[0] == 'x': print(pow(2,32)-int(S[1:])) else: print(int(S)) if __name__ == '__main__': main()