結果
| 問題 |
No.2525 Great Move
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-07-15 18:39:56 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 125 bytes |
| コンパイル時間 | 273 ms |
| コンパイル使用メモリ | 81,964 KB |
| 実行使用メモリ | 73,068 KB |
| 最終ジャッジ日時 | 2024-09-17 03:33:33 |
| 合計ジャッジ時間 | 3,049 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 26 |
ソースコード
import sys
sys.set_int_max_str_digits(0)
H, S = map(int, input().split())
if H % 2 == S % 2:
print("Yes")
else:
print("No")