結果

問題 No.396 クラス替え
ユーザー 👑 rin204
提出日時 2020-06-11 00:24:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 1,000 ms
コード長 298 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-23 20:36:33
合計ジャッジ時間 1,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
x, y = map(int, input().split())
x -= 1
y -= 1
if (x // m) % 2 == 0:
    x_class = x % m
else:
    x_class = m - x % m - 1
if (y // m) % 2 == 0:
    y_class = y % m
else:
    y_class = m - y % m - 1
    
if x_class == y_class:
    print("YES")
else:
    print("NO")
0