結果

問題 No.186 中華風 (Easy)
ユーザー kaeru82433413kaeru82433413
提出日時 2024-02-10 22:42:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 60,428 KB
最終ジャッジ日時 2024-09-28 17:20:15
合計ジャッジ時間 2,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
59,076 KB
testcase_01 AC 43 ms
58,412 KB
testcase_02 AC 47 ms
59,920 KB
testcase_03 AC 42 ms
60,428 KB
testcase_04 AC 48 ms
58,468 KB
testcase_05 AC 48 ms
59,520 KB
testcase_06 AC 58 ms
58,668 KB
testcase_07 AC 47 ms
59,888 KB
testcase_08 AC 58 ms
59,172 KB
testcase_09 AC 56 ms
59,240 KB
testcase_10 AC 57 ms
59,228 KB
testcase_11 AC 63 ms
60,224 KB
testcase_12 AC 43 ms
59,260 KB
testcase_13 AC 50 ms
60,084 KB
testcase_14 AC 46 ms
59,648 KB
testcase_15 AC 41 ms
58,172 KB
testcase_16 AC 37 ms
52,644 KB
testcase_17 AC 37 ms
52,644 KB
testcase_18 AC 44 ms
59,276 KB
testcase_19 AC 43 ms
57,920 KB
testcase_20 AC 42 ms
58,792 KB
testcase_21 AC 42 ms
58,884 KB
testcase_22 AC 42 ms
58,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm

XY = [tuple(map(int, input().split())) for _ in range(3)]

rem, mod = XY[0]

ans = -1
for rem_, mod_ in XY[1:]:
    for i in range(mod_):
        if (mod * i + rem) % mod_ == rem_:
            rem = mod * i + rem
            mod = lcm(mod, mod_)
            rem %= mod
            break
    else:
        break
else:
    ans = (rem-1)%mod+1
print(ans)
0