結果

問題 No.849 yuki国の分割統治
ユーザー betrue12betrue12
提出日時 2019-07-05 22:30:07
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 554 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-10-06 22:27:54
合計ジャッジ時間 7,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,032 KB
testcase_01 AC 78 ms
12,032 KB
testcase_02 AC 82 ms
12,032 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 82 ms
12,160 KB
testcase_05 AC 80 ms
12,032 KB
testcase_06 AC 83 ms
12,160 KB
testcase_07 RE -
testcase_08 AC 278 ms
16,768 KB
testcase_09 AC 277 ms
14,976 KB
testcase_10 AC 289 ms
13,184 KB
testcase_11 AC 249 ms
14,720 KB
testcase_12 AC 272 ms
12,672 KB
testcase_13 AC 284 ms
14,720 KB
testcase_14 AC 282 ms
13,824 KB
testcase_15 AC 254 ms
16,640 KB
testcase_16 AC 301 ms
19,072 KB
testcase_17 AC 272 ms
12,544 KB
testcase_18 AC 306 ms
21,504 KB
testcase_19 AC 288 ms
13,696 KB
testcase_20 AC 297 ms
17,152 KB
testcase_21 AC 272 ms
12,416 KB
testcase_22 AC 295 ms
18,560 KB
testcase_23 AC 288 ms
17,024 KB
testcase_24 AC 287 ms
12,928 KB
testcase_25 AC 309 ms
22,272 KB
testcase_26 AC 77 ms
12,032 KB
testcase_27 AC 78 ms
12,032 KB
testcase_28 AC 76 ms
12,032 KB
testcase_29 AC 75 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def extgcd(a, b)
    if b == 0
        {x: 1, y: 0, gcd: a}
    else
        prev = extgcd(b, a % b)
        {
            x: prev[:y],
            y: prev[:x] - (a / b) * prev[:y],
            gcd: prev[:gcd]
        }
    end
end

a, b, c, d = gets.split.map(&:to_i)
gx = a.gcd(c);
dy0 = (c*b-a*d).abs / gx

hash = extgcd(a/gx, c/gx)
dy1 = hash[:x]*b + hash[:y]*d

result = {}
N = gets.to_i
N.times do
    x, y = gets.split.map(&:to_i)
    x2 = x % gx
    y2 = y - (x-x2)/gx*dy1
    y2 %= dy0 if dy0 > 0
    result[[x2, y2]] = true
end
puts result.size
0