結果

問題 No.1819 Mirrored 2
ユーザー SumitacchanSumitacchan
提出日時 2022-01-21 22:07:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 77,000 KB
最終ジャッジ日時 2024-05-04 13:06:53
合計ジャッジ時間 4,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
76,512 KB
testcase_01 AC 108 ms
76,552 KB
testcase_02 AC 88 ms
76,764 KB
testcase_03 AC 70 ms
76,772 KB
testcase_04 AC 69 ms
76,556 KB
testcase_05 WA -
testcase_06 AC 86 ms
76,556 KB
testcase_07 WA -
testcase_08 AC 90 ms
76,304 KB
testcase_09 AC 66 ms
76,452 KB
testcase_10 WA -
testcase_11 AC 118 ms
76,500 KB
testcase_12 AC 69 ms
76,668 KB
testcase_13 AC 79 ms
76,788 KB
testcase_14 AC 263 ms
77,000 KB
testcase_15 AC 70 ms
76,792 KB
testcase_16 AC 87 ms
76,708 KB
testcase_17 AC 176 ms
76,720 KB
testcase_18 AC 85 ms
76,736 KB
testcase_19 AC 123 ms
76,740 KB
testcase_20 WA -
testcase_21 AC 45 ms
56,124 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 75 ms
76,816 KB
testcase_25 AC 78 ms
76,788 KB
testcase_26 AC 71 ms
76,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import random

def rev(N):
    s = str(N)
    s = s[::-1]
    return int(s)

if __name__ == '__main__':
    P, Q, x, y = map(int, input().split())
    while True:
        k = random.randint(0, 10**12)
        N = k * Q + y
        if rev(N) % P == x:
            ans = rev(N)
            break
    print(ans)
0