結果

問題 No.2087 基数の変換
ユーザー shauuebbitshauuebbit
提出日時 2022-09-30 22:10:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 39 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 10,600 KB
実行使用メモリ 7,924 KB
最終ジャッジ日時 2023-08-24 15:44:04
合計ジャッジ時間 3,141 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 14 ms
7,780 KB
testcase_02 RE -
testcase_03 AC 15 ms
7,704 KB
testcase_04 WA -
testcase_05 AC 14 ms
7,784 KB
testcase_06 AC 15 ms
7,748 KB
testcase_07 AC 14 ms
7,704 KB
testcase_08 AC 15 ms
7,760 KB
testcase_09 AC 16 ms
7,780 KB
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 15 ms
7,824 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 AC 15 ms
7,780 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 15 ms
7,792 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 14 ms
7,884 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 14 ms
7,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print(int(input(), N))
0