結果
問題 | No.3022 一元一次式 mod 1000000000 |
ユーザー |
![]() |
提出日時 | 2025-02-14 21:49:20 |
言語 | D (dmd 2.109.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 695 bytes |
コンパイル時間 | 2,837 ms |
コンパイル使用メモリ | 95,232 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2025-02-14 21:50:12 |
合計ジャッジ時間 | 3,076 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 7 WA * 13 |
ソースコード
import std.algorithm, std.array, std.bigint, std.conv, std.stdio, std.typecons, std.range;long gcd(long a, long b, ref long x, ref long y) {if (b == 0) {x = 1;y = 0;return a;}long d = gcd(b, a % b, y, x);y -= a / b * x;return d;}long solve(long N, long M) {long x, y;auto g = gcd(N, 10L^^9, x, y);if (M % g != 0) return -1;N /= g;auto mod = 10^^9 / g;M /= g;x = -x; y = -y;if (x < 0) x = x%mod + mod;return x;}void main() {auto t = readln[0 .. $-1].to!uint;long[] result;foreach (_; 0 .. t) {auto tmp = readln.split.to!(long[]);result ~= solve(tmp[0], tmp[1]);}foreach (r; result) {writeln(r);}}