結果

問題 No.2324 Two Countries within UEC
ユーザー pありpあり
提出日時 2023-05-28 13:55:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 228 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-08 04:22:12
合計ジャッジ時間 15,281 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 909 ms
10,752 KB
testcase_01 AC 930 ms
10,752 KB
testcase_02 AC 184 ms
10,752 KB
testcase_03 AC 685 ms
10,752 KB
testcase_04 AC 811 ms
10,752 KB
testcase_05 AC 207 ms
10,752 KB
testcase_06 AC 345 ms
10,752 KB
testcase_07 AC 167 ms
10,752 KB
testcase_08 AC 722 ms
10,752 KB
testcase_09 AC 734 ms
10,752 KB
testcase_10 AC 916 ms
10,624 KB
testcase_11 AC 932 ms
10,624 KB
testcase_12 AC 312 ms
10,752 KB
testcase_13 AC 308 ms
10,752 KB
testcase_14 AC 182 ms
10,752 KB
testcase_15 AC 173 ms
10,752 KB
testcase_16 AC 631 ms
10,752 KB
testcase_17 AC 415 ms
10,752 KB
testcase_18 AC 204 ms
10,752 KB
testcase_19 AC 908 ms
10,752 KB
testcase_20 AC 149 ms
10,752 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 934 ms
10,752 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 30 ms
10,624 KB
testcase_33 AC 30 ms
10,624 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 30 ms
10,496 KB
testcase_36 AC 31 ms
10,752 KB
testcase_37 AC 30 ms
10,752 KB
testcase_38 AC 30 ms
10,752 KB
testcase_39 AC 31 ms
10,752 KB
testcase_40 AC 30 ms
10,624 KB
testcase_41 RE -
testcase_42 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p,q = map(int, input().split())

for _ in range(q):
  x,f = map(int, input().split())
  
  a = f*pow(x, -1, p)
  a%=p
  
  if(m<a):
    print(0)
    continue
  
  ans = m//p
  if(m%p >= (a+p-1)%p):
    ans+=1
  
  print(ans)
0