結果
問題 | No.2087 基数の変換 |
ユーザー |
|
提出日時 | 2022-09-30 21:50:52 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 132 bytes |
コンパイル時間 | 498 ms |
コンパイル使用メモリ | 82,420 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-12-22 23:18:51 |
合計ジャッジ時間 | 3,734 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 51 |
ソースコード
n=int(input())m=int(input())s=[]while m:s.append(str(m%n))m//=nif not s:s.append("0")s=s[::-1]print("".join(s))