結果
| 問題 | No.2525 Great Move |
| コンテスト | |
| ユーザー |
hitonanode
|
| 提出日時 | 2023-11-03 22:02:18 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 192 ms / 2,000 ms |
| コード長 | 126 bytes |
| 記録 | |
| コンパイル時間 | 1,350 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 15,784 KB |
| 最終ジャッジ日時 | 2026-04-12 23:50:30 |
| 合計ジャッジ時間 | 7,439 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
import sys
sys.set_int_max_str_digits(201010)
print("Possible" if sum(map(int, input().split())) % 2 == 0 else "Impossible")
hitonanode