結果
問題 | No.3047 Riddle of Cards |
ユーザー | yoshnary |
提出日時 | 2019-04-01 22:26:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 808 ms |
コンパイル使用メモリ | 97,668 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-05 08:18:53 |
合計ジャッジ時間 | 1,267 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <cmath> #include <queue> #include <map> #include <unordered_map> #include <set> #include <functional> #include <iomanip> #include <bitset> #include <cassert> using namespace std; typedef long long ll; int main() { ll n, m; cin >> n >> m; ll ans = 1; for (int i = 0; i < n; i++) ans *= m; cout << ans << endl; return 0; }