結果

問題 No.2324 Two Countries within UEC
ユーザー とりゐとりゐ
提出日時 2023-05-28 13:39:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 76,908 KB
最終ジャッジ日時 2024-06-26 23:13:46
合計ジャッジ時間 11,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 353 ms
76,572 KB
testcase_01 AC 368 ms
76,240 KB
testcase_02 AC 127 ms
76,908 KB
testcase_03 AC 283 ms
76,564 KB
testcase_04 AC 316 ms
76,024 KB
testcase_05 AC 131 ms
76,008 KB
testcase_06 AC 174 ms
76,280 KB
testcase_07 AC 121 ms
76,336 KB
testcase_08 AC 281 ms
76,332 KB
testcase_09 AC 295 ms
76,040 KB
testcase_10 AC 361 ms
76,020 KB
testcase_11 AC 353 ms
76,408 KB
testcase_12 AC 162 ms
76,120 KB
testcase_13 AC 162 ms
76,204 KB
testcase_14 AC 126 ms
76,312 KB
testcase_15 AC 138 ms
76,032 KB
testcase_16 AC 281 ms
76,428 KB
testcase_17 AC 210 ms
76,544 KB
testcase_18 AC 130 ms
76,244 KB
testcase_19 AC 370 ms
76,508 KB
testcase_20 AC 113 ms
76,388 KB
testcase_21 AC 277 ms
76,032 KB
testcase_22 AC 308 ms
76,228 KB
testcase_23 AC 147 ms
75,992 KB
testcase_24 AC 272 ms
76,380 KB
testcase_25 AC 362 ms
75,996 KB
testcase_26 AC 281 ms
76,580 KB
testcase_27 AC 287 ms
76,812 KB
testcase_28 AC 289 ms
76,200 KB
testcase_29 AC 294 ms
76,256 KB
testcase_30 AC 293 ms
75,832 KB
testcase_31 AC 37 ms
52,144 KB
testcase_32 AC 36 ms
52,292 KB
testcase_33 AC 37 ms
52,636 KB
testcase_34 AC 37 ms
51,700 KB
testcase_35 AC 37 ms
53,444 KB
testcase_36 AC 36 ms
53,220 KB
testcase_37 AC 36 ms
52,064 KB
testcase_38 AC 36 ms
52,072 KB
testcase_39 AC 37 ms
53,564 KB
testcase_40 AC 37 ms
52,068 KB
testcase_41 AC 37 ms
53,000 KB
testcase_42 AC 36 ms
52,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,p,q=map(int,input().split())
for _ in range(q):
  x,f=map(int,input().split())
  if f==0:
    if x%p==0:
      print(m)
    else:
      print(m//p)
  else:
    if x%p==0:
      print(0)
      continue
    inv=f*pow(x,p-2,p)%p
    print((m-inv+p)//p)
0