結果

問題 No.2087 基数の変換
ユーザー harurunharurun
提出日時 2022-09-30 21:40:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 44,416 KB
最終ジャッジ日時 2024-06-02 05:12:52
合計ジャッジ時間 26,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
44,144 KB
testcase_01 AC 448 ms
44,012 KB
testcase_02 AC 450 ms
43,760 KB
testcase_03 AC 454 ms
44,028 KB
testcase_04 AC 495 ms
44,084 KB
testcase_05 AC 461 ms
44,284 KB
testcase_06 AC 435 ms
44,192 KB
testcase_07 AC 446 ms
43,904 KB
testcase_08 AC 449 ms
43,756 KB
testcase_09 AC 447 ms
44,160 KB
testcase_10 AC 448 ms
44,156 KB
testcase_11 AC 450 ms
44,036 KB
testcase_12 AC 456 ms
43,892 KB
testcase_13 AC 445 ms
43,892 KB
testcase_14 AC 451 ms
43,908 KB
testcase_15 AC 442 ms
44,148 KB
testcase_16 AC 444 ms
44,364 KB
testcase_17 AC 439 ms
44,288 KB
testcase_18 AC 449 ms
43,764 KB
testcase_19 AC 449 ms
44,416 KB
testcase_20 AC 464 ms
44,276 KB
testcase_21 AC 459 ms
44,196 KB
testcase_22 AC 449 ms
43,896 KB
testcase_23 AC 447 ms
43,764 KB
testcase_24 AC 471 ms
43,884 KB
testcase_25 AC 455 ms
44,408 KB
testcase_26 AC 457 ms
44,296 KB
testcase_27 AC 455 ms
44,144 KB
testcase_28 AC 459 ms
43,772 KB
testcase_29 AC 457 ms
43,892 KB
testcase_30 AC 474 ms
44,276 KB
testcase_31 AC 455 ms
43,908 KB
testcase_32 AC 456 ms
43,888 KB
testcase_33 AC 454 ms
43,772 KB
testcase_34 AC 453 ms
43,760 KB
testcase_35 AC 455 ms
43,912 KB
testcase_36 AC 447 ms
44,012 KB
testcase_37 AC 452 ms
44,020 KB
testcase_38 AC 446 ms
44,144 KB
testcase_39 AC 448 ms
43,780 KB
testcase_40 AC 450 ms
43,760 KB
testcase_41 AC 449 ms
44,028 KB
testcase_42 AC 457 ms
44,016 KB
testcase_43 AC 457 ms
43,764 KB
testcase_44 AC 458 ms
43,764 KB
testcase_45 AC 453 ms
44,016 KB
testcase_46 AC 458 ms
43,904 KB
testcase_47 AC 455 ms
44,156 KB
testcase_48 AC 454 ms
44,156 KB
testcase_49 AC 463 ms
43,900 KB
testcase_50 AC 446 ms
44,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy
N,M=map(int,open(0).read().split())
print(numpy.base_repr(M,N))
0