結果

問題 No.2087 基数の変換
ユーザー KazunKazun
提出日時 2022-09-30 21:21:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 97 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2024-12-22 21:55:26
合計ジャッジ時間 3,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,908 KB
testcase_01 AC 40 ms
52,076 KB
testcase_02 AC 38 ms
52,384 KB
testcase_03 AC 40 ms
52,216 KB
testcase_04 AC 37 ms
52,616 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 39 ms
53,088 KB
testcase_08 AC 39 ms
52,136 KB
testcase_09 AC 38 ms
53,340 KB
testcase_10 AC 38 ms
52,808 KB
testcase_11 AC 38 ms
53,584 KB
testcase_12 AC 39 ms
51,984 KB
testcase_13 AC 38 ms
53,636 KB
testcase_14 AC 38 ms
52,548 KB
testcase_15 AC 38 ms
52,888 KB
testcase_16 AC 38 ms
52,468 KB
testcase_17 AC 38 ms
51,628 KB
testcase_18 AC 37 ms
52,868 KB
testcase_19 AC 38 ms
52,048 KB
testcase_20 AC 36 ms
52,572 KB
testcase_21 AC 39 ms
52,300 KB
testcase_22 AC 36 ms
52,232 KB
testcase_23 AC 36 ms
52,456 KB
testcase_24 AC 36 ms
52,404 KB
testcase_25 AC 38 ms
52,460 KB
testcase_26 AC 37 ms
53,128 KB
testcase_27 AC 36 ms
52,636 KB
testcase_28 AC 35 ms
52,796 KB
testcase_29 AC 37 ms
52,412 KB
testcase_30 AC 35 ms
53,036 KB
testcase_31 AC 36 ms
52,184 KB
testcase_32 AC 36 ms
52,312 KB
testcase_33 AC 38 ms
53,004 KB
testcase_34 AC 39 ms
52,200 KB
testcase_35 AC 37 ms
53,096 KB
testcase_36 AC 38 ms
52,636 KB
testcase_37 AC 38 ms
52,980 KB
testcase_38 AC 37 ms
52,796 KB
testcase_39 AC 37 ms
53,260 KB
testcase_40 AC 36 ms
52,092 KB
testcase_41 AC 37 ms
53,400 KB
testcase_42 AC 37 ms
52,948 KB
testcase_43 AC 37 ms
53,492 KB
testcase_44 AC 38 ms
52,760 KB
testcase_45 AC 38 ms
52,964 KB
testcase_46 AC 38 ms
51,748 KB
testcase_47 AC 37 ms
52,476 KB
testcase_48 AC 37 ms
52,272 KB
testcase_49 AC 37 ms
52,472 KB
testcase_50 AC 38 ms
53,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
M=int(input())

X=[]
while M:
    X.append(M%N)
    M//=N

print(*X[::-1],sep="")
0