結果

問題 No.2087 基数の変換
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-30 21:28:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 57,028 KB
最終ジャッジ日時 2024-06-02 04:53:46
合計ジャッジ時間 3,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,704 KB
testcase_01 AC 40 ms
55,992 KB
testcase_02 AC 42 ms
56,716 KB
testcase_03 AC 40 ms
55,516 KB
testcase_04 AC 38 ms
56,340 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 39 ms
55,932 KB
testcase_08 AC 39 ms
56,500 KB
testcase_09 AC 40 ms
56,192 KB
testcase_10 AC 40 ms
56,388 KB
testcase_11 AC 40 ms
56,488 KB
testcase_12 AC 42 ms
56,592 KB
testcase_13 AC 40 ms
55,704 KB
testcase_14 AC 41 ms
56,444 KB
testcase_15 AC 42 ms
56,276 KB
testcase_16 AC 42 ms
56,988 KB
testcase_17 AC 41 ms
56,448 KB
testcase_18 AC 40 ms
55,556 KB
testcase_19 AC 41 ms
56,148 KB
testcase_20 AC 40 ms
56,932 KB
testcase_21 AC 41 ms
55,784 KB
testcase_22 AC 40 ms
56,364 KB
testcase_23 AC 40 ms
55,236 KB
testcase_24 AC 39 ms
55,616 KB
testcase_25 AC 38 ms
56,156 KB
testcase_26 AC 38 ms
55,868 KB
testcase_27 AC 39 ms
55,804 KB
testcase_28 AC 39 ms
55,860 KB
testcase_29 AC 40 ms
57,028 KB
testcase_30 AC 39 ms
56,148 KB
testcase_31 AC 40 ms
55,116 KB
testcase_32 AC 41 ms
55,420 KB
testcase_33 AC 40 ms
55,876 KB
testcase_34 AC 42 ms
55,560 KB
testcase_35 AC 41 ms
55,784 KB
testcase_36 AC 39 ms
56,820 KB
testcase_37 AC 39 ms
55,420 KB
testcase_38 AC 39 ms
55,968 KB
testcase_39 AC 39 ms
55,576 KB
testcase_40 AC 39 ms
56,496 KB
testcase_41 AC 41 ms
56,324 KB
testcase_42 AC 40 ms
56,380 KB
testcase_43 AC 40 ms
56,368 KB
testcase_44 AC 39 ms
55,768 KB
testcase_45 AC 39 ms
56,908 KB
testcase_46 AC 39 ms
55,804 KB
testcase_47 AC 41 ms
55,492 KB
testcase_48 AC 40 ms
55,856 KB
testcase_49 AC 41 ms
56,464 KB
testcase_50 AC 41 ms
56,104 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())
res = M
b = N
tmp = []
while res>0:
    t = res%b
    tmp.append(str(t))
    res = res//b
tmp.reverse()
print(''.join(tmp))
0