結果

問題 No.1819 Mirrored 2
ユーザー MitarushiMitarushi
提出日時 2022-01-21 23:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 937 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-05-04 16:49:41
合計ジャッジ時間 16,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
76,544 KB
testcase_01 AC 108 ms
76,416 KB
testcase_02 AC 188 ms
76,544 KB
testcase_03 AC 206 ms
76,544 KB
testcase_04 AC 129 ms
76,416 KB
testcase_05 AC 86 ms
76,800 KB
testcase_06 AC 213 ms
76,672 KB
testcase_07 AC 276 ms
76,800 KB
testcase_08 AC 297 ms
76,544 KB
testcase_09 AC 100 ms
76,800 KB
testcase_10 AC 272 ms
76,416 KB
testcase_11 AC 501 ms
76,928 KB
testcase_12 AC 745 ms
76,544 KB
testcase_13 AC 96 ms
76,288 KB
testcase_14 AC 408 ms
76,928 KB
testcase_15 AC 188 ms
76,544 KB
testcase_16 AC 696 ms
77,056 KB
testcase_17 AC 330 ms
76,544 KB
testcase_18 AC 144 ms
76,672 KB
testcase_19 AC 170 ms
76,800 KB
testcase_20 AC 234 ms
76,800 KB
testcase_21 AC 328 ms
76,928 KB
testcase_22 AC 102 ms
76,800 KB
testcase_23 AC 87 ms
76,416 KB
testcase_24 AC 98 ms
76,800 KB
testcase_25 AC 165 ms
76,672 KB
testcase_26 AC 937 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

P, Q, x , y = map(int, input().split())

def reverse(x):
    return int(str(x)[::-1])

while True:
    k = random.randint(0, 10 ** 100)
    rev_N = k * Q + y
    if rev_N % 10 == 0:
        continue
    N = reverse(rev_N)
    if N % P == x:
        print(N)
        break
    
0