結果

問題 No.2087 基数の変換
ユーザー moharan627moharan627
提出日時 2022-09-30 21:31:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 40 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 86,324 KB
実行使用メモリ 78,776 KB
最終ジャッジ日時 2023-08-24 14:50:08
合計ジャッジ時間 9,712 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 72 ms
71,008 KB
testcase_02 RE -
testcase_03 AC 71 ms
71,100 KB
testcase_04 WA -
testcase_05 AC 72 ms
70,912 KB
testcase_06 AC 72 ms
70,652 KB
testcase_07 AC 73 ms
70,768 KB
testcase_08 AC 73 ms
70,936 KB
testcase_09 AC 73 ms
70,756 KB
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 72 ms
70,752 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 76 ms
70,932 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 73 ms
71,072 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 73 ms
71,148 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 77 ms
70,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
m=input()
print(int(m,n))
0