結果

問題 No.2525 Great Move
ユーザー hato336hato336
提出日時 2023-11-03 21:25:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,624 KB
最終ジャッジ日時 2024-09-25 19:01:55
合計ジャッジ時間 5,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
sys.set_int_max_str_digits(0)
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
n,m = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
print('Possible' if abs(n-m) % 2 == 0 else 'Impossible')
0