結果
問題 |
No.8047 Riddle of Cards
|
ユーザー |
![]() |
提出日時 | 2019-04-01 22:25:30 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 411 bytes |
コンパイル時間 | 757 ms |
コンパイル使用メモリ | 99,064 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-27 03:21:19 |
合計ジャッジ時間 | 1,213 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 2 WA * 5 |
ソースコード
#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; }