結果

問題 No.1819 Mirrored 2
ユーザー 👑 rin204rin204
提出日時 2022-01-23 02:17:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 185 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,760 KB
最終ジャッジ日時 2024-05-06 09:42:08
合計ジャッジ時間 5,736 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,716 KB
testcase_01 AC 40 ms
59,636 KB
testcase_02 AC 41 ms
57,936 KB
testcase_03 AC 41 ms
58,860 KB
testcase_04 AC 40 ms
58,852 KB
testcase_05 AC 40 ms
58,848 KB
testcase_06 AC 41 ms
58,684 KB
testcase_07 AC 41 ms
58,844 KB
testcase_08 AC 43 ms
58,528 KB
testcase_09 AC 40 ms
58,732 KB
testcase_10 AC 41 ms
58,248 KB
testcase_11 AC 40 ms
57,876 KB
testcase_12 AC 41 ms
58,452 KB
testcase_13 AC 41 ms
58,040 KB
testcase_14 AC 42 ms
59,108 KB
testcase_15 AC 40 ms
58,444 KB
testcase_16 AC 40 ms
58,748 KB
testcase_17 AC 41 ms
58,204 KB
testcase_18 AC 39 ms
57,668 KB
testcase_19 AC 39 ms
59,024 KB
testcase_20 AC 40 ms
58,080 KB
testcase_21 AC 41 ms
58,060 KB
testcase_22 AC 40 ms
57,848 KB
testcase_23 AC 41 ms
58,812 KB
testcase_24 AC 41 ms
58,780 KB
testcase_25 AC 41 ms
58,056 KB
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

P, Q, x, y = map(int, input().split())

while y % 10 == 0:
    y += Q
n = str(y)[::-1]

r = int(n) % P
zero = 0
while r != x:
    r *= 10
    zero += 1
    r %= P
print(n + "0" * zero)
0