結果

問題 No.187 中華風 (Hard)
ユーザー navel_tosnavel_tos
提出日時 2024-10-24 21:11:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 517 ms / 3,000 ms
コード長 919 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 77,432 KB
最終ジャッジ日時 2024-10-24 21:11:54
合計ジャッジ時間 7,845 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
69,188 KB
testcase_01 AC 62 ms
69,632 KB
testcase_02 AC 127 ms
76,012 KB
testcase_03 AC 126 ms
76,088 KB
testcase_04 AC 480 ms
77,060 KB
testcase_05 AC 464 ms
76,756 KB
testcase_06 AC 466 ms
76,916 KB
testcase_07 AC 496 ms
76,900 KB
testcase_08 AC 495 ms
77,316 KB
testcase_09 AC 517 ms
77,216 KB
testcase_10 AC 496 ms
76,992 KB
testcase_11 AC 471 ms
77,160 KB
testcase_12 AC 485 ms
77,432 KB
testcase_13 AC 64 ms
71,424 KB
testcase_14 AC 64 ms
71,380 KB
testcase_15 AC 121 ms
75,944 KB
testcase_16 AC 122 ms
75,816 KB
testcase_17 AC 44 ms
57,852 KB
testcase_18 AC 58 ms
68,184 KB
testcase_19 AC 43 ms
58,352 KB
testcase_20 AC 364 ms
76,280 KB
testcase_21 AC 44 ms
59,796 KB
testcase_22 AC 465 ms
76,936 KB
testcase_23 AC 44 ms
58,324 KB
testcase_24 AC 44 ms
58,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder 187 中華風(Hard)  多倍長解法

#exec gcd
#Reference: https://x.com/_miz_tom/status/1842086118990479854
exec('def gcd(x, y):\n' +
     ' x, y = abs(x), abs(y)\n' +
     ' if x == 0: return y\n' +
     ' if not (y := y % x): return x\n if not (x := x % y): return y\n' * 300 +
     ' return gcd(x, y)')
def CRT(n1, M1, n2, M2):  #smallest n ≡ n1 mod M1 ≡ n2 mod M2
    if (n1 - n2) % ( G := gcd(M1, M2) ) != 0: return -1
    return (n1 - n2) * pow(M2 // G, -1, M1 // G) % M1 * M2 // G + n2


#入力受取
N = int(input())
P = [tuple(map(int, input().split())) for _ in range(N)]
MOD = 10 ** 9 + 7

#CRTを実行
rem, mod = 0, 1
for Xi, Yi in P:
    rem = CRT(rem, mod, Xi, Yi)
    if rem == -1:
        break
    mod = mod * Yi // gcd(mod, Yi)

if   rem == -1:  #解なし
    print(-1)
elif rem == 0:  #正整数を探す → lcm(Yi)
    print(mod % MOD)
else:  #remを出力
    print(rem % MOD)
0