結果

問題 No.8047 Riddle of Cards
ユーザー Sumitacchan
提出日時 2019-04-01 21:26:09
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 45 bytes
コンパイル時間 1,830 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 75,776 KB
最終ジャッジ日時 2024-11-26 11:01:16
合計ジャッジ時間 2,727 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 1
other RE * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int, input().split())
print(pow(M,N))
0