結果

問題 No.1819 Mirrored 2
ユーザー MitarushiMitarushi
提出日時 2022-01-21 23:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,110 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-11-26 05:53:00
合計ジャッジ時間 14,510 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 466 ms
76,928 KB
testcase_01 AC 139 ms
76,800 KB
testcase_02 AC 427 ms
76,800 KB
testcase_03 AC 144 ms
76,416 KB
testcase_04 AC 324 ms
76,928 KB
testcase_05 AC 95 ms
76,672 KB
testcase_06 AC 112 ms
76,672 KB
testcase_07 AC 240 ms
76,544 KB
testcase_08 AC 147 ms
76,800 KB
testcase_09 AC 216 ms
76,672 KB
testcase_10 AC 1,110 ms
76,544 KB
testcase_11 AC 439 ms
76,672 KB
testcase_12 AC 207 ms
76,416 KB
testcase_13 AC 827 ms
76,800 KB
testcase_14 AC 66 ms
68,224 KB
testcase_15 AC 438 ms
76,800 KB
testcase_16 AC 164 ms
76,800 KB
testcase_17 AC 44 ms
54,144 KB
testcase_18 AC 290 ms
76,928 KB
testcase_19 AC 410 ms
76,800 KB
testcase_20 AC 249 ms
76,672 KB
testcase_21 AC 547 ms
76,672 KB
testcase_22 AC 103 ms
76,800 KB
testcase_23 AC 116 ms
76,672 KB
testcase_24 AC 141 ms
76,800 KB
testcase_25 AC 103 ms
76,672 KB
testcase_26 AC 614 ms
76,800 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