結果

問題 No.1048 Zero (Advanced)
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-08 22:12:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 53,896 KB
最終ジャッジ日時 2024-07-04 00:48:41
合計ジャッジ時間 1,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,396 KB
testcase_01 AC 35 ms
52,944 KB
testcase_02 AC 35 ms
53,164 KB
testcase_03 AC 34 ms
53,352 KB
testcase_04 AC 33 ms
52,372 KB
testcase_05 AC 36 ms
52,064 KB
testcase_06 AC 33 ms
52,620 KB
testcase_07 AC 33 ms
53,556 KB
testcase_08 AC 33 ms
52,636 KB
testcase_09 AC 33 ms
53,028 KB
testcase_10 AC 34 ms
52,460 KB
testcase_11 AC 32 ms
53,296 KB
testcase_12 AC 36 ms
52,608 KB
testcase_13 AC 33 ms
53,896 KB
testcase_14 AC 33 ms
53,416 KB
testcase_15 AC 33 ms
53,000 KB
testcase_16 AC 34 ms
52,280 KB
testcase_17 AC 35 ms
53,512 KB
testcase_18 AC 34 ms
53,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r, m, k = map(int, input().split())

if k == 0:
    print('Yes')
    exit()

il = (l-1)//m
ir = r//m

import math
g = math.gcd(k, m)

if g == 1:
    if ir-il >= 1:
        print('Yes')
    else:
        print('No')
else:
    pl = l%m
    pr = r%m
    p = m//g
    if r-l+1 >= m:
        print('Yes')
    else:
        if pl <= pr:
            if pl <= p <= pr:
                print('Yes')
            else:
                print('No')
        else:
            if 0 <= p <= pr or pl <= p <= m-1:
                print('Yes')
            else:
                print('No')
0