結果

問題 No.2087 基数の変換
ユーザー Moss_LocalMoss_Local
提出日時 2022-09-30 21:55:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,340 KB
最終ジャッジ日時 2024-06-02 05:34:13
合計ジャッジ時間 29,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
46,952 KB
testcase_01 AC 526 ms
46,828 KB
testcase_02 AC 520 ms
46,952 KB
testcase_03 AC 518 ms
46,952 KB
testcase_04 AC 514 ms
47,084 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 519 ms
47,212 KB
testcase_08 AC 510 ms
46,952 KB
testcase_09 AC 513 ms
47,080 KB
testcase_10 AC 515 ms
46,952 KB
testcase_11 AC 524 ms
46,952 KB
testcase_12 AC 521 ms
46,952 KB
testcase_13 AC 519 ms
47,088 KB
testcase_14 AC 516 ms
47,088 KB
testcase_15 AC 528 ms
46,956 KB
testcase_16 AC 517 ms
46,952 KB
testcase_17 AC 520 ms
47,084 KB
testcase_18 AC 524 ms
47,080 KB
testcase_19 AC 518 ms
46,956 KB
testcase_20 AC 523 ms
46,952 KB
testcase_21 AC 518 ms
47,084 KB
testcase_22 AC 524 ms
47,084 KB
testcase_23 AC 516 ms
46,956 KB
testcase_24 AC 530 ms
47,088 KB
testcase_25 AC 518 ms
47,080 KB
testcase_26 AC 522 ms
47,088 KB
testcase_27 AC 513 ms
47,084 KB
testcase_28 AC 514 ms
47,212 KB
testcase_29 AC 516 ms
47,212 KB
testcase_30 AC 520 ms
46,828 KB
testcase_31 AC 526 ms
47,084 KB
testcase_32 AC 536 ms
47,208 KB
testcase_33 AC 543 ms
46,956 KB
testcase_34 AC 526 ms
47,080 KB
testcase_35 AC 512 ms
47,208 KB
testcase_36 AC 516 ms
47,212 KB
testcase_37 AC 510 ms
47,336 KB
testcase_38 AC 511 ms
47,080 KB
testcase_39 AC 510 ms
46,952 KB
testcase_40 AC 520 ms
47,016 KB
testcase_41 AC 512 ms
47,084 KB
testcase_42 AC 520 ms
46,952 KB
testcase_43 AC 520 ms
47,208 KB
testcase_44 AC 518 ms
47,080 KB
testcase_45 AC 515 ms
47,084 KB
testcase_46 AC 523 ms
46,952 KB
testcase_47 AC 519 ms
47,208 KB
testcase_48 AC 518 ms
46,956 KB
testcase_49 AC 516 ms
47,088 KB
testcase_50 AC 520 ms
46,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from cgitb import reset
from collections import defaultdict
from functools import lru_cache
from sys import flags, stdin
import math
import re
import queue
from tokenize import String
import typing
import itertools
import bisect
import statistics
import numpy as np
# from numpy.core.function_base import _needs_add_docstring
# from numpy.core.numeric import outer
input = stdin.readline
MOD = 1000000007
INF = 122337203685477580


def Base_10_to_n(X, n):
    X_dumy = X
    out = ''
    while X_dumy > 0:
        out = str(X_dumy % n)+out
        X_dumy = int(X_dumy/n)
    return out


def solve():

    n = int(input().rstrip())
    m = int(input().rstrip())
    # m is to change to base n
    p = Base_10_to_n(m, n)
    print(p)
    return


if __name__ == '__main__':
    solve()
0