結果

問題 No.1819 Mirrored 2
ユーザー ytftytft
提出日時 2022-02-14 12:24:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 93,304 KB
最終ジャッジ日時 2024-06-29 06:10:11
合計ジャッジ時間 6,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,372 KB
testcase_01 AC 72 ms
75,692 KB
testcase_02 AC 268 ms
85,476 KB
testcase_03 AC 131 ms
77,460 KB
testcase_04 AC 51 ms
75,188 KB
testcase_05 AC 104 ms
77,036 KB
testcase_06 AC 325 ms
90,284 KB
testcase_07 AC 202 ms
82,088 KB
testcase_08 AC 300 ms
87,708 KB
testcase_09 AC 50 ms
75,272 KB
testcase_10 AC 346 ms
91,160 KB
testcase_11 WA -
testcase_12 AC 201 ms
80,952 KB
testcase_13 AC 141 ms
78,036 KB
testcase_14 AC 367 ms
93,304 KB
testcase_15 AC 53 ms
75,344 KB
testcase_16 AC 82 ms
75,824 KB
testcase_17 AC 215 ms
82,736 KB
testcase_18 AC 101 ms
76,700 KB
testcase_19 AC 94 ms
76,460 KB
testcase_20 AC 46 ms
75,044 KB
testcase_21 WA -
testcase_22 AC 130 ms
77,808 KB
testcase_23 AC 84 ms
76,004 KB
testcase_24 AC 194 ms
80,648 KB
testcase_25 AC 98 ms
76,608 KB
testcase_26 AC 316 ms
88,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,Q,x,y=map(int,input().split())
while int(str(y)[::-1])%P==0:
    y+=Q
ans=str(y)[::-1]
y=int(str(y)[::-1])%P
while y!=x:
    y=(y*10)%P
    ans+="0"
print(ans)
0