結果
問題 |
No.1819 Mirrored 2
|
ユーザー |
👑 ![]() |
提出日時 | 2022-01-21 22:02:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 162 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 158,528 KB |
最終ジャッジ日時 | 2024-11-26 00:08:04 |
合計ジャッジ時間 | 7,623 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 23 WA * 2 OLE * 1 |
ソースコード
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()