結果

問題 No.2324 Two Countries within UEC
ユーザー ID 21712ID 21712
提出日時 2024-11-16 21:01:33
言語 Go
(1.22.1)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 14,240 ms
コンパイル使用メモリ 237,324 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-11-16 21:01:59
合計ジャッジ時間 24,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 303 ms
6,528 KB
testcase_01 AC 343 ms
6,528 KB
testcase_02 AC 59 ms
5,504 KB
testcase_03 AC 236 ms
6,400 KB
testcase_04 AC 281 ms
6,528 KB
testcase_05 AC 63 ms
5,760 KB
testcase_06 AC 112 ms
6,144 KB
testcase_07 AC 49 ms
5,248 KB
testcase_08 AC 258 ms
6,400 KB
testcase_09 AC 283 ms
6,528 KB
testcase_10 AC 381 ms
6,528 KB
testcase_11 AC 321 ms
6,528 KB
testcase_12 AC 99 ms
6,144 KB
testcase_13 AC 112 ms
6,144 KB
testcase_14 AC 65 ms
5,504 KB
testcase_15 AC 53 ms
5,248 KB
testcase_16 AC 216 ms
6,400 KB
testcase_17 AC 137 ms
6,272 KB
testcase_18 AC 74 ms
6,016 KB
testcase_19 AC 365 ms
6,528 KB
testcase_20 AC 47 ms
5,248 KB
testcase_21 AC 255 ms
6,400 KB
testcase_22 AC 298 ms
6,528 KB
testcase_23 AC 94 ms
6,144 KB
testcase_24 AC 246 ms
6,400 KB
testcase_25 AC 335 ms
6,528 KB
testcase_26 AC 255 ms
5,504 KB
testcase_27 AC 231 ms
6,144 KB
testcase_28 AC 228 ms
5,376 KB
testcase_29 AC 215 ms
5,248 KB
testcase_30 AC 250 ms
5,504 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 1 ms
5,248 KB
testcase_41 AC 1 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "math/big"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n,m,p,q int64
	Fscan(rd,&n,&m,&p,&q)
	P:=NewInt(p)
	for ;q>0;q-- {
		var x,f int64
		Fscan(rd,&x,&f)
		if x%p==0&&f==0 {
			Println(m)
			continue
		}
		if x%p==0 {
			Println(0)
			continue
		}
		X:=NewInt(x)
		F:=NewInt(f)
		X.ModInverse(X,P)
		F.Mul(F,X).Mod(F,P)
		f=F.Int64()
		r:=m/p
		if m%p>0&&f>0&&f<=m%p {
			r++
		}
		Println(r)
	}
}
0