結果

問題 No.2087 基数の変換
ユーザー AkariAkari
提出日時 2022-09-30 21:41:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 151 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,556 KB
最終ジャッジ日時 2024-06-02 05:15:07
合計ジャッジ時間 25,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
44,156 KB
testcase_01 AC 529 ms
43,928 KB
testcase_02 AC 491 ms
44,312 KB
testcase_03 AC 536 ms
44,176 KB
testcase_04 AC 461 ms
44,296 KB
testcase_05 AC 465 ms
43,916 KB
testcase_06 AC 475 ms
43,924 KB
testcase_07 AC 463 ms
44,340 KB
testcase_08 AC 461 ms
43,924 KB
testcase_09 AC 469 ms
44,172 KB
testcase_10 AC 462 ms
43,932 KB
testcase_11 AC 478 ms
44,432 KB
testcase_12 AC 474 ms
44,556 KB
testcase_13 AC 459 ms
44,304 KB
testcase_14 AC 461 ms
43,936 KB
testcase_15 AC 465 ms
44,044 KB
testcase_16 AC 465 ms
44,180 KB
testcase_17 AC 460 ms
44,056 KB
testcase_18 AC 459 ms
44,048 KB
testcase_19 AC 469 ms
44,544 KB
testcase_20 AC 467 ms
44,052 KB
testcase_21 AC 476 ms
44,032 KB
testcase_22 AC 471 ms
43,932 KB
testcase_23 AC 462 ms
43,916 KB
testcase_24 AC 470 ms
44,304 KB
testcase_25 AC 473 ms
44,060 KB
testcase_26 AC 461 ms
43,920 KB
testcase_27 AC 473 ms
44,048 KB
testcase_28 AC 474 ms
44,308 KB
testcase_29 AC 468 ms
44,440 KB
testcase_30 AC 467 ms
44,052 KB
testcase_31 AC 468 ms
44,304 KB
testcase_32 AC 465 ms
44,312 KB
testcase_33 AC 463 ms
43,916 KB
testcase_34 AC 462 ms
43,928 KB
testcase_35 AC 461 ms
44,368 KB
testcase_36 AC 463 ms
44,448 KB
testcase_37 AC 472 ms
44,048 KB
testcase_38 AC 472 ms
44,052 KB
testcase_39 AC 475 ms
43,924 KB
testcase_40 AC 460 ms
44,176 KB
testcase_41 AC 472 ms
43,916 KB
testcase_42 AC 464 ms
44,432 KB
testcase_43 AC 466 ms
44,436 KB
testcase_44 AC 462 ms
44,300 KB
testcase_45 AC 470 ms
44,032 KB
testcase_46 AC 473 ms
44,412 KB
testcase_47 AC 477 ms
44,316 KB
testcase_48 AC 475 ms
44,304 KB
testcase_49 AC 483 ms
44,036 KB
testcase_50 AC 463 ms
44,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np




def main():
    n = int(input())
    m = int(input())
    print(np.base_repr(m, n))







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