結果

問題 No.3047 Riddle of Cards
ユーザー やむなくやむなく
提出日時 2019-04-01 21:33:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 87,200 KB
実行使用メモリ 71,560 KB
最終ジャッジ日時 2023-08-17 14:30:21
合計ジャッジ時間 1,488 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
70,964 KB
testcase_01 AC 69 ms
71,484 KB
testcase_02 AC 69 ms
71,560 KB
testcase_03 AC 69 ms
71,248 KB
testcase_04 AC 72 ms
71,420 KB
testcase_05 AC 68 ms
71,524 KB
testcase_06 AC 68 ms
71,168 KB
testcase_07 AC 68 ms
71,340 KB
権限があれば一括ダウンロードができます

ソースコード

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(list(reversed(new_str_list)))
# print(new_str)
print(B**A)
0