結果

問題 No.1819 Mirrored 2
ユーザー 👑 tatyamtatyam
提出日時 2022-01-21 22:02:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 131,272 KB
最終ジャッジ日時 2024-05-04 12:58:48
合計ジャッジ時間 7,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,216 KB
testcase_01 AC 53 ms
64,256 KB
testcase_02 AC 60 ms
71,808 KB
testcase_03 AC 59 ms
68,224 KB
testcase_04 AC 56 ms
63,104 KB
testcase_05 AC 55 ms
67,328 KB
testcase_06 AC 62 ms
73,728 KB
testcase_07 AC 57 ms
70,528 KB
testcase_08 AC 64 ms
72,704 KB
testcase_09 AC 53 ms
62,976 KB
testcase_10 AC 61 ms
73,984 KB
testcase_11 WA -
testcase_12 AC 59 ms
70,016 KB
testcase_13 AC 57 ms
68,096 KB
testcase_14 AC 62 ms
74,368 KB
testcase_15 AC 52 ms
63,744 KB
testcase_16 AC 53 ms
66,048 KB
testcase_17 AC 59 ms
70,656 KB
testcase_18 AC 57 ms
66,944 KB
testcase_19 AC 56 ms
66,560 KB
testcase_20 AC 53 ms
62,592 KB
testcase_21 WA -
testcase_22 AC 57 ms
67,840 KB
testcase_23 AC 58 ms
65,664 KB
testcase_24 AC 58 ms
69,888 KB
testcase_25 AC 55 ms
66,176 KB
testcase_26 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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