結果

問題 No.8047 Riddle of Cards
ユーザー やむなく
提出日時 2019-04-01 21:32:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 51,712 KB
最終ジャッジ日時 2024-11-26 11:23:52
合計ジャッジ時間 1,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 2 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

first = input()
split_first = first.split()
A = int(split_first[0])
B = int(split_first[1])

new_str_list = list(str(B**A))
new_str = ''.join(reversed(new_str_list))
print(new_str)
0