結果
問題 | No.3047 Riddle of Cards |
ユーザー | yoshnary |
提出日時 | 2019-04-01 22:25:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 411 bytes |
コンパイル時間 | 844 ms |
コンパイル使用メモリ | 97,004 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 08:17:53 |
合計ジャッジ時間 | 1,138 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
#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 << m << endl; return 0; }