結果

問題 No.2324 Two Countries within UEC
ユーザー ID 21712ID 21712
提出日時 2024-11-16 11:48:06
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 16,942 ms
コンパイル使用メモリ 224,508 KB
実行使用メモリ 8,228 KB
最終ジャッジ日時 2024-11-16 11:48:35
合計ジャッジ時間 26,803 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
8,228 KB
testcase_01 AC 376 ms
8,224 KB
testcase_02 AC 66 ms
7,840 KB
testcase_03 AC 272 ms
8,096 KB
testcase_04 AC 312 ms
8,224 KB
testcase_05 AC 71 ms
7,840 KB
testcase_06 AC 127 ms
7,968 KB
testcase_07 AC 56 ms
6,820 KB
testcase_08 AC 274 ms
8,100 KB
testcase_09 AC 282 ms
8,224 KB
testcase_10 AC 372 ms
8,224 KB
testcase_11 AC 365 ms
8,224 KB
testcase_12 AC 110 ms
7,968 KB
testcase_13 AC 111 ms
7,968 KB
testcase_14 AC 65 ms
7,844 KB
testcase_15 AC 56 ms
6,816 KB
testcase_16 AC 266 ms
8,096 KB
testcase_17 AC 159 ms
7,968 KB
testcase_18 AC 72 ms
7,972 KB
testcase_19 AC 368 ms
8,228 KB
testcase_20 AC 48 ms
6,816 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 364 ms
8,228 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1 ms
6,820 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 1 ms
6,816 KB
testcase_34 AC 1 ms
6,820 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 1 ms
6,816 KB
testcase_37 AC 1 ms
6,820 KB
testcase_38 AC 2 ms
6,816 KB
testcase_39 AC 1 ms
6,820 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
		X:=NewInt(x)
		F:=NewInt(f)
		X.ModInverse(X,P)
		F.Mul(F,X).Mod(F,P)
		f=F.Int64()
		r:=m/p
		if f>0&& f<=m%p {
			r++
		}
		Println(r)
	}
}
0