結果

問題 No.2087 基数の変換
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-30 21:29:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 57,428 KB
最終ジャッジ日時 2024-06-02 04:56:27
合計ジャッジ時間 3,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,672 KB
testcase_01 AC 44 ms
55,860 KB
testcase_02 AC 44 ms
56,556 KB
testcase_03 AC 43 ms
55,992 KB
testcase_04 AC 41 ms
56,640 KB
testcase_05 AC 42 ms
56,180 KB
testcase_06 AC 44 ms
56,520 KB
testcase_07 AC 41 ms
56,084 KB
testcase_08 AC 42 ms
56,456 KB
testcase_09 AC 41 ms
56,724 KB
testcase_10 AC 43 ms
56,932 KB
testcase_11 AC 42 ms
55,104 KB
testcase_12 AC 43 ms
55,948 KB
testcase_13 AC 42 ms
55,880 KB
testcase_14 AC 42 ms
56,464 KB
testcase_15 AC 43 ms
55,612 KB
testcase_16 AC 41 ms
55,296 KB
testcase_17 AC 41 ms
57,428 KB
testcase_18 AC 41 ms
56,804 KB
testcase_19 AC 41 ms
55,828 KB
testcase_20 AC 42 ms
55,832 KB
testcase_21 AC 41 ms
56,048 KB
testcase_22 AC 42 ms
55,796 KB
testcase_23 AC 44 ms
57,208 KB
testcase_24 AC 44 ms
55,520 KB
testcase_25 AC 41 ms
56,152 KB
testcase_26 AC 42 ms
55,360 KB
testcase_27 AC 42 ms
56,028 KB
testcase_28 AC 41 ms
55,724 KB
testcase_29 AC 43 ms
56,492 KB
testcase_30 AC 43 ms
56,104 KB
testcase_31 AC 43 ms
55,800 KB
testcase_32 AC 42 ms
55,364 KB
testcase_33 AC 42 ms
55,884 KB
testcase_34 AC 40 ms
56,048 KB
testcase_35 AC 40 ms
56,864 KB
testcase_36 AC 41 ms
56,028 KB
testcase_37 AC 41 ms
55,112 KB
testcase_38 AC 41 ms
56,512 KB
testcase_39 AC 42 ms
56,604 KB
testcase_40 AC 44 ms
56,656 KB
testcase_41 AC 43 ms
56,296 KB
testcase_42 AC 41 ms
57,248 KB
testcase_43 AC 42 ms
56,144 KB
testcase_44 AC 43 ms
55,552 KB
testcase_45 AC 42 ms
56,924 KB
testcase_46 AC 41 ms
55,640 KB
testcase_47 AC 43 ms
56,804 KB
testcase_48 AC 42 ms
55,836 KB
testcase_49 AC 42 ms
55,732 KB
testcase_50 AC 42 ms
56,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
M = int(input())
if M==0:
    print(0)
    exit()
res = M
b = N
tmp = []
while res>0:
    t = res%b
    tmp.append(str(t))
    res = res//b
tmp.reverse()
print(''.join(tmp))
0