結果
問題 | No.2087 基数の変換 |
ユーザー |
![]() |
提出日時 | 2022-09-30 21:23:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 48 ms / 2,000 ms |
コード長 | 230 bytes |
コンパイル時間 | 365 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 54,016 KB |
最終ジャッジ日時 | 2024-12-22 22:03:03 |
合計ジャッジ時間 | 3,861 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 51 |
ソースコード
import sysinput = sys.stdin.readlinefrom collections import *N = int(input())M = int(input())if M==0:exit(print(0))l = []while M:l.append(M%N)M //= Nl.reverse()ans = ''.join(map(str, l))print(ans)