結果

問題 No.2324 Two Countries within UEC
ユーザー rts_tatsurts_tatsu
提出日時 2023-05-28 15:25:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 690 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,000 KB
最終ジャッジ日時 2024-06-08 07:44:25
合計ジャッジ時間 12,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
76,800 KB
testcase_01 AC 472 ms
77,056 KB
testcase_02 AC 179 ms
77,056 KB
testcase_03 AC 468 ms
79,000 KB
testcase_04 AC 400 ms
77,184 KB
testcase_05 AC 179 ms
77,312 KB
testcase_06 AC 232 ms
77,184 KB
testcase_07 AC 219 ms
77,936 KB
testcase_08 WA -
testcase_09 AC 383 ms
77,056 KB
testcase_10 AC 511 ms
76,672 KB
testcase_11 AC 491 ms
77,568 KB
testcase_12 AC 229 ms
76,672 KB
testcase_13 AC 225 ms
76,672 KB
testcase_14 AC 203 ms
77,696 KB
testcase_15 AC 166 ms
76,928 KB
testcase_16 AC 382 ms
77,312 KB
testcase_17 AC 377 ms
78,580 KB
testcase_18 AC 319 ms
78,760 KB
testcase_19 AC 463 ms
77,184 KB
testcase_20 AC 161 ms
77,056 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 478 ms
77,312 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 37 ms
51,584 KB
testcase_32 AC 36 ms
51,584 KB
testcase_33 AC 35 ms
51,968 KB
testcase_34 AC 35 ms
51,456 KB
testcase_35 AC 36 ms
51,968 KB
testcase_36 AC 36 ms
51,968 KB
testcase_37 AC 35 ms
52,224 KB
testcase_38 AC 36 ms
51,712 KB
testcase_39 AC 34 ms
51,840 KB
testcase_40 AC 36 ms
51,456 KB
testcase_41 AC 35 ms
51,840 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def extended_gcd(a, b):
    if b == 0:
        return a, 1, 0
    else:
        d, x, y = extended_gcd(b, a % b)
        return d, y, x - (a // b) * y

def count_valid_y(n,m,x, p, f):
    d, _, _ = extended_gcd(x, p)
    if f % d != 0:
        return 0
    else:
        count = 0
        y0 = ((f // d) * extended_gcd(x // d, p // d)[1]) % (p // d)
        for k in range(10):
            y = y0 + k * (p // d)
            if 1 <= y <= m:
                count += 1
        return count

# x = 任意の値
# p = 任意の値
# f = 任意の値
n,m,p,q=map(int,input().split())

for i in range(q):
    x,f=map(int,input().split())
    result = count_valid_y(n,m,x, p, f)
    print(result)
0