結果

問題 No.186 中華風 (Easy)
ユーザー kaeru82433413kaeru82433413
提出日時 2024-02-10 22:39:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 364 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 60,340 KB
最終ジャッジ日時 2024-09-28 17:20:01
合計ジャッジ時間 2,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
59,116 KB
testcase_01 AC 41 ms
58,584 KB
testcase_02 AC 45 ms
58,404 KB
testcase_03 AC 39 ms
59,064 KB
testcase_04 AC 46 ms
60,108 KB
testcase_05 AC 46 ms
59,172 KB
testcase_06 AC 57 ms
59,524 KB
testcase_07 AC 44 ms
58,336 KB
testcase_08 AC 54 ms
59,172 KB
testcase_09 AC 54 ms
59,628 KB
testcase_10 AC 53 ms
60,340 KB
testcase_11 AC 60 ms
58,548 KB
testcase_12 AC 40 ms
58,732 KB
testcase_13 AC 48 ms
58,412 KB
testcase_14 AC 43 ms
58,920 KB
testcase_15 AC 38 ms
58,456 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 42 ms
58,508 KB
testcase_19 AC 41 ms
58,140 KB
testcase_20 AC 38 ms
58,936 KB
testcase_21 AC 41 ms
59,052 KB
testcase_22 AC 42 ms
58,720 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
print(ans)
0