結果

問題 No.2087 基数の変換
ユーザー MasaokiSetaMasaokiSeta
提出日時 2022-10-01 02:57:24
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 50 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 87,116 KB
実行使用メモリ 79,332 KB
最終ジャッジ日時 2023-08-24 20:33:30
合計ジャッジ時間 8,712 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 74 ms
71,552 KB
testcase_02 RE -
testcase_03 AC 73 ms
71,324 KB
testcase_04 WA -
testcase_05 AC 72 ms
71,176 KB
testcase_06 AC 72 ms
71,172 KB
testcase_07 AC 72 ms
71,428 KB
testcase_08 AC 73 ms
71,232 KB
testcase_09 AC 73 ms
71,224 KB
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 72 ms
71,248 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 72 ms
71,324 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,384 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 72 ms
71,232 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 74 ms
71,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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