結果

問題 No.2525 Great Move
ユーザー KoiKoi
提出日時 2023-11-03 21:22:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 72,768 KB
最終ジャッジ日時 2024-09-25 18:54:48
合計ジャッジ時間 2,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
72,768 KB
testcase_01 AC 76 ms
72,292 KB
testcase_02 WA -
testcase_03 AC 109 ms
72,252 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,208 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 40 ms
52,608 KB
testcase_09 WA -
testcase_10 AC 71 ms
71,900 KB
testcase_11 AC 48 ms
65,024 KB
testcase_12 WA -
testcase_13 AC 75 ms
71,964 KB
testcase_14 WA -
testcase_15 AC 79 ms
72,312 KB
testcase_16 AC 70 ms
72,064 KB
testcase_17 AC 44 ms
56,832 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
51,840 KB
testcase_21 WA -
testcase_22 AC 40 ms
52,352 KB
testcase_23 AC 39 ms
51,968 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 38 ms
52,352 KB
testcase_27 WA -
testcase_28 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(0)
H,S=map(int,input().split())
if((H-S)%2==0):
    print("Possible")
else:
    print("Inpossible")
0