結果

問題 No.1819 Mirrored 2
ユーザー shotoyooshotoyoo
提出日時 2022-01-21 22:09:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 577 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-05-04 13:09:25
合計ジャッジ時間 2,948 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
80,000 KB
testcase_01 AC 56 ms
80,256 KB
testcase_02 AC 62 ms
80,512 KB
testcase_03 AC 58 ms
80,000 KB
testcase_04 AC 55 ms
80,128 KB
testcase_05 AC 55 ms
80,000 KB
testcase_06 AC 57 ms
80,128 KB
testcase_07 AC 55 ms
80,384 KB
testcase_08 AC 52 ms
80,256 KB
testcase_09 AC 54 ms
80,256 KB
testcase_10 AC 55 ms
80,512 KB
testcase_11 WA -
testcase_12 AC 56 ms
80,000 KB
testcase_13 AC 58 ms
80,000 KB
testcase_14 AC 55 ms
80,256 KB
testcase_15 AC 53 ms
80,128 KB
testcase_16 AC 56 ms
80,640 KB
testcase_17 AC 53 ms
80,384 KB
testcase_18 AC 55 ms
80,128 KB
testcase_19 AC 61 ms
80,128 KB
testcase_20 AC 57 ms
80,256 KB
testcase_21 WA -
testcase_22 AC 58 ms
80,128 KB
testcase_23 AC 55 ms
80,000 KB
testcase_24 AC 57 ms
80,256 KB
testcase_25 AC 56 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()))
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