結果
問題 | No.2087 基数の変換 |
ユーザー | DrDrpilot |
提出日時 | 2022-10-07 17:22:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 58 ms / 2,000 ms |
コード長 | 804 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 82,060 KB |
実行使用メモリ | 62,976 KB |
最終ジャッジ日時 | 2024-06-12 00:23:12 |
合計ジャッジ時間 | 4,343 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
62,592 KB |
testcase_01 | AC | 52 ms
62,336 KB |
testcase_02 | AC | 52 ms
62,592 KB |
testcase_03 | AC | 53 ms
62,464 KB |
testcase_04 | AC | 53 ms
62,936 KB |
testcase_05 | AC | 58 ms
62,592 KB |
testcase_06 | AC | 53 ms
62,464 KB |
testcase_07 | AC | 52 ms
62,336 KB |
testcase_08 | AC | 53 ms
62,592 KB |
testcase_09 | AC | 53 ms
62,976 KB |
testcase_10 | AC | 52 ms
62,848 KB |
testcase_11 | AC | 53 ms
62,976 KB |
testcase_12 | AC | 53 ms
62,592 KB |
testcase_13 | AC | 53 ms
62,464 KB |
testcase_14 | AC | 53 ms
62,592 KB |
testcase_15 | AC | 53 ms
62,336 KB |
testcase_16 | AC | 52 ms
62,592 KB |
testcase_17 | AC | 53 ms
62,976 KB |
testcase_18 | AC | 54 ms
62,720 KB |
testcase_19 | AC | 52 ms
62,336 KB |
testcase_20 | AC | 53 ms
62,336 KB |
testcase_21 | AC | 53 ms
62,592 KB |
testcase_22 | AC | 54 ms
62,592 KB |
testcase_23 | AC | 53 ms
62,592 KB |
testcase_24 | AC | 53 ms
62,592 KB |
testcase_25 | AC | 53 ms
62,336 KB |
testcase_26 | AC | 53 ms
62,848 KB |
testcase_27 | AC | 52 ms
62,336 KB |
testcase_28 | AC | 53 ms
62,592 KB |
testcase_29 | AC | 53 ms
62,336 KB |
testcase_30 | AC | 53 ms
62,592 KB |
testcase_31 | AC | 52 ms
62,720 KB |
testcase_32 | AC | 53 ms
62,592 KB |
testcase_33 | AC | 53 ms
62,592 KB |
testcase_34 | AC | 53 ms
62,464 KB |
testcase_35 | AC | 53 ms
62,464 KB |
testcase_36 | AC | 53 ms
62,336 KB |
testcase_37 | AC | 53 ms
62,592 KB |
testcase_38 | AC | 52 ms
62,592 KB |
testcase_39 | AC | 52 ms
62,464 KB |
testcase_40 | AC | 53 ms
62,592 KB |
testcase_41 | AC | 52 ms
62,592 KB |
testcase_42 | AC | 52 ms
62,464 KB |
testcase_43 | AC | 52 ms
62,592 KB |
testcase_44 | AC | 52 ms
62,720 KB |
testcase_45 | AC | 52 ms
62,336 KB |
testcase_46 | AC | 51 ms
62,592 KB |
testcase_47 | AC | 51 ms
62,336 KB |
testcase_48 | AC | 51 ms
62,592 KB |
testcase_49 | AC | 52 ms
62,336 KB |
testcase_50 | AC | 51 ms
62,848 KB |
ソースコード
def I():return int(input()) def MAP():return map(int,input().split()) def MAPs():return map(str,input().split()) def LI(): return list(map(int,input().split())) def TPL(): return tuple(map(int,input().split())) def S():return input() from collections import defaultdict,Counter,deque from copy import deepcopy from heapq import heapify,heappop,heappush from bisect import bisect_left,bisect_right from itertools import accumulate,product,permutations,combinations,combinations_with_replacement from math import gcd,ceil,floor,factorial,sqrt,pi,sin,cos,tan,radians,exp import time import random inf=float('inf');mod=998244353;Mod=10**9+7 #move=[(1,0),(0,1),(-1,0),(0,-1)] n=I() m=I() ans=[] while m: ans.append(str(m%n)) m//=n ans=ans[::-1] if ans==[]: print(0) exit() print(''.join(ans))