結果

問題 No.1819 Mirrored 2
ユーザー ytftytft
提出日時 2022-02-14 12:26:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 93,184 KB
最終ジャッジ日時 2024-06-29 06:10:20
合計ジャッジ時間 6,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 91 ms
75,520 KB
testcase_02 AC 337 ms
85,348 KB
testcase_03 AC 168 ms
76,964 KB
testcase_04 AC 64 ms
74,972 KB
testcase_05 AC 136 ms
76,416 KB
testcase_06 AC 406 ms
89,752 KB
testcase_07 AC 267 ms
81,368 KB
testcase_08 AC 362 ms
87,680 KB
testcase_09 AC 62 ms
74,880 KB
testcase_10 AC 426 ms
91,140 KB
testcase_11 AC 110 ms
75,904 KB
testcase_12 AC 254 ms
80,896 KB
testcase_13 AC 168 ms
77,780 KB
testcase_14 AC 451 ms
93,184 KB
testcase_15 AC 72 ms
75,264 KB
testcase_16 AC 102 ms
75,776 KB
testcase_17 AC 265 ms
82,048 KB
testcase_18 AC 139 ms
76,672 KB
testcase_19 AC 131 ms
76,288 KB
testcase_20 AC 57 ms
75,036 KB
testcase_21 AC 52 ms
75,136 KB
testcase_22 AC 165 ms
77,608 KB
testcase_23 AC 115 ms
75,520 KB
testcase_24 AC 236 ms
80,468 KB
testcase_25 AC 127 ms
76,160 KB
testcase_26 AC 392 ms
88,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P,Q,x,y=map(int,input().split())
while int(str(y)[::-1])%P==0 or y%10==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