結果

問題 No.1819 Mirrored 2
ユーザー shotoyooshotoyoo
提出日時 2022-01-21 22:11:17
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 600 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 87,808 KB
最終ジャッジ日時 2024-05-04 16:13:21
合計ジャッジ時間 3,435 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
80,128 KB
testcase_01 AC 67 ms
80,256 KB
testcase_02 AC 66 ms
80,256 KB
testcase_03 AC 67 ms
80,128 KB
testcase_04 AC 68 ms
80,128 KB
testcase_05 AC 67 ms
79,872 KB
testcase_06 AC 66 ms
80,768 KB
testcase_07 AC 66 ms
80,256 KB
testcase_08 AC 68 ms
80,256 KB
testcase_09 AC 70 ms
80,384 KB
testcase_10 AC 67 ms
80,256 KB
testcase_11 AC 67 ms
80,000 KB
testcase_12 AC 67 ms
80,256 KB
testcase_13 AC 68 ms
80,128 KB
testcase_14 AC 66 ms
80,256 KB
testcase_15 AC 67 ms
80,256 KB
testcase_16 AC 67 ms
80,000 KB
testcase_17 AC 67 ms
80,384 KB
testcase_18 AC 67 ms
80,000 KB
testcase_19 AC 68 ms
80,256 KB
testcase_20 AC 68 ms
80,256 KB
testcase_21 AC 67 ms
80,000 KB
testcase_22 AC 67 ms
80,128 KB
testcase_23 AC 67 ms
80,256 KB
testcase_24 AC 67 ms
80,256 KB
testcase_25 AC 67 ms
80,128 KB
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO)
LI = lambda : list(map(int, input().split()))
# sys.setrecursionlimit(3*10**5+10)

p,q,x,y = list(map(int, input().split()))
if y%10==0:
    y += q
v10 = [1]
index = {}
index[1] = 0
for i in range(p+10):
    v10.append(v10[-1]*10%p)
    index[v10[-1]] = i+1
n = int(str(y)[::-1])
val = (x*pow(n, p-2, p)) % p
i = index[val]
print(str(n) + "0" * i)
0