結果

問題 No.2087 基数の変換
ユーザー fumofumofunifumofumofuni
提出日時 2022-09-30 21:28:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 75 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,552 KB
最終ジャッジ日時 2024-06-02 04:53:14
合計ジャッジ時間 27,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 469 ms
43,908 KB
testcase_01 AC 476 ms
43,900 KB
testcase_02 AC 475 ms
44,016 KB
testcase_03 AC 471 ms
44,028 KB
testcase_04 AC 472 ms
43,912 KB
testcase_05 AC 485 ms
43,892 KB
testcase_06 AC 464 ms
44,296 KB
testcase_07 AC 471 ms
44,532 KB
testcase_08 AC 470 ms
44,160 KB
testcase_09 AC 476 ms
44,136 KB
testcase_10 AC 486 ms
44,276 KB
testcase_11 AC 488 ms
44,152 KB
testcase_12 AC 470 ms
43,908 KB
testcase_13 AC 472 ms
44,268 KB
testcase_14 AC 465 ms
44,036 KB
testcase_15 AC 478 ms
44,276 KB
testcase_16 AC 474 ms
44,288 KB
testcase_17 AC 482 ms
43,892 KB
testcase_18 AC 464 ms
43,888 KB
testcase_19 AC 467 ms
44,020 KB
testcase_20 AC 465 ms
43,904 KB
testcase_21 AC 470 ms
44,028 KB
testcase_22 AC 478 ms
43,940 KB
testcase_23 AC 473 ms
44,528 KB
testcase_24 AC 483 ms
43,904 KB
testcase_25 AC 470 ms
44,292 KB
testcase_26 AC 476 ms
44,016 KB
testcase_27 AC 474 ms
44,032 KB
testcase_28 AC 464 ms
44,536 KB
testcase_29 AC 468 ms
43,900 KB
testcase_30 AC 474 ms
44,400 KB
testcase_31 AC 470 ms
44,164 KB
testcase_32 AC 474 ms
43,888 KB
testcase_33 AC 488 ms
44,092 KB
testcase_34 AC 484 ms
44,272 KB
testcase_35 AC 487 ms
44,148 KB
testcase_36 AC 478 ms
44,152 KB
testcase_37 AC 477 ms
44,020 KB
testcase_38 AC 484 ms
44,064 KB
testcase_39 AC 530 ms
44,276 KB
testcase_40 AC 475 ms
43,900 KB
testcase_41 AC 475 ms
44,276 KB
testcase_42 AC 472 ms
43,900 KB
testcase_43 AC 476 ms
44,292 KB
testcase_44 AC 472 ms
44,528 KB
testcase_45 AC 468 ms
44,552 KB
testcase_46 AC 470 ms
43,896 KB
testcase_47 AC 479 ms
43,884 KB
testcase_48 AC 468 ms
44,020 KB
testcase_49 AC 476 ms
44,148 KB
testcase_50 AC 480 ms
44,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

A=int(input())
B=int(input())
print(np.base_repr(B, A))
0