結果

問題 No.8047 Riddle of Cards
ユーザー Pachicobue
提出日時 2020-04-02 12:24:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 66,176 KB
最終ジャッジ日時 2025-01-09 12:30:20
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 6 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
int main()
{
    int n,m;std::cin >> n>> m;
    long long ans = 1;
    for(int i = 0; i < n; i++)ans *= m;
    std::cout << ans << std::endl;
    return 0;
}
0