結果

問題 No.2525 Great Move
ユーザー 👑 KA37RIKA37RI
提出日時 2023-11-03 21:41:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 117 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 11,696 KB
実行使用メモリ 10,628 KB
最終ジャッジ日時 2023-11-03 21:42:06
合計ジャッジ時間 1,855 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 27 ms
10,628 KB
testcase_03 AC 27 ms
10,628 KB
testcase_04 AC 28 ms
10,628 KB
testcase_05 WA -
testcase_06 AC 25 ms
10,012 KB
testcase_07 AC 24 ms
10,012 KB
testcase_08 WA -
testcase_09 AC 24 ms
10,008 KB
testcase_10 AC 25 ms
10,336 KB
testcase_11 WA -
testcase_12 AC 30 ms
10,116 KB
testcase_13 WA -
testcase_14 AC 27 ms
10,532 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 25 ms
10,092 KB
testcase_18 AC 26 ms
10,116 KB
testcase_19 AC 25 ms
10,112 KB
testcase_20 AC 24 ms
9,996 KB
testcase_21 AC 24 ms
9,996 KB
testcase_22 AC 24 ms
9,996 KB
testcase_23 WA -
testcase_24 AC 24 ms
9,996 KB
testcase_25 AC 24 ms
9,996 KB
testcase_26 AC 24 ms
9,996 KB
testcase_27 AC 23 ms
9,996 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, s = input().split()
a, b = int(h[-1]), int(s[-1])
if a * b % 2 == 0:
	print("Impossible")
else:
	print("Possible")
0