結果
| 問題 |
No.2087 基数の変換
|
| コンテスト | |
| ユーザー |
SidewaysOwl
|
| 提出日時 | 2022-09-30 21:23:34 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 47 ms / 2,000 ms |
| コード長 | 200 bytes |
| コンパイル時間 | 290 ms |
| コンパイル使用メモリ | 82,716 KB |
| 実行使用メモリ | 52,352 KB |
| 最終ジャッジ日時 | 2024-12-22 22:03:49 |
| 合計ジャッジ時間 | 3,808 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 51 |
ソースコード
n = int(input())
m = int(input())
def ten_to_m(n,m):
res = 0
cnt = 0
while n > 0:
res += (n % m) * 10 ** cnt
n = n // m
cnt += 1
return res
print(ten_to_m(m,n))
SidewaysOwl