結果

問題 No.1819 Mirrored 2
ユーザー 👑 rin204rin204
提出日時 2022-01-23 02:17:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 185 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 88,912 KB
最終ジャッジ日時 2024-11-28 15:25:32
合計ジャッジ時間 5,925 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,576 KB
testcase_01 AC 40 ms
59,940 KB
testcase_02 AC 40 ms
58,496 KB
testcase_03 AC 40 ms
58,248 KB
testcase_04 AC 41 ms
58,200 KB
testcase_05 AC 41 ms
58,296 KB
testcase_06 AC 40 ms
58,540 KB
testcase_07 AC 42 ms
59,032 KB
testcase_08 AC 44 ms
58,588 KB
testcase_09 AC 40 ms
58,392 KB
testcase_10 AC 40 ms
58,472 KB
testcase_11 AC 40 ms
58,940 KB
testcase_12 AC 40 ms
57,616 KB
testcase_13 AC 40 ms
57,944 KB
testcase_14 AC 41 ms
57,732 KB
testcase_15 AC 40 ms
57,760 KB
testcase_16 AC 42 ms
59,108 KB
testcase_17 AC 40 ms
58,124 KB
testcase_18 AC 41 ms
58,616 KB
testcase_19 AC 39 ms
58,140 KB
testcase_20 AC 40 ms
58,164 KB
testcase_21 AC 41 ms
58,312 KB
testcase_22 AC 39 ms
57,564 KB
testcase_23 AC 40 ms
59,208 KB
testcase_24 AC 40 ms
58,144 KB
testcase_25 AC 40 ms
58,300 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