結果

問題 No.1819 Mirrored 2
ユーザー hir355hir355
提出日時 2022-01-07 23:45:53
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 168 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 65,852 KB
最終ジャッジ日時 2024-05-04 16:01:57
合計ジャッジ時間 5,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,308 KB
testcase_01 AC 43 ms
58,724 KB
testcase_02 AC 60 ms
59,304 KB
testcase_03 AC 50 ms
58,596 KB
testcase_04 AC 41 ms
58,456 KB
testcase_05 AC 48 ms
58,512 KB
testcase_06 AC 63 ms
58,508 KB
testcase_07 AC 58 ms
59,368 KB
testcase_08 AC 63 ms
59,364 KB
testcase_09 AC 41 ms
58,732 KB
testcase_10 AC 65 ms
58,764 KB
testcase_11 AC 45 ms
58,624 KB
testcase_12 AC 55 ms
59,908 KB
testcase_13 AC 55 ms
58,504 KB
testcase_14 AC 67 ms
59,864 KB
testcase_15 AC 42 ms
58,256 KB
testcase_16 AC 45 ms
57,868 KB
testcase_17 AC 56 ms
57,976 KB
testcase_18 AC 49 ms
58,260 KB
testcase_19 AC 47 ms
59,584 KB
testcase_20 AC 39 ms
58,772 KB
testcase_21 AC 41 ms
58,116 KB
testcase_22 AC 52 ms
58,464 KB
testcase_23 AC 47 ms
59,192 KB
testcase_24 AC 55 ms
58,600 KB
testcase_25 AC 47 ms
58,760 KB
testcase_26 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q, x, y = map(int, input().split())
if y % 10 == 0:
    y += q
ans = int(str(y)[::-1])
t = 0
while ans * pow(10, t, p) % p != x:
    t += 1
print(str(ans) + '0' * t)
0