結果

問題 No.3047 Riddle of Cards
ユーザー hamrayhamray
提出日時 2019-04-01 21:50:31
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 851 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 79,720 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 04:34:30
合計ジャッジ時間 1,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <stack>
#include <map>
#include <algorithm>
#include <iomanip>
#include <cmath>
using namespace std;

#define MAXV 1000000000
#define MOD 1000000007
using ll = long long;

bool operator<(const pair<int, int>& a, const pair<int, int>& b) {
	if (a.first == b.first) {
		return a.second < b.second;
	}
	return a.first < b.first;
}
ll a[100010];
int main() {
	
	/*string s = "?etirw ot syaw ynam woH .sdrac hcae no ,M naht erom on dna 1 naht ssel on si hcihw ,regetni na etirw dluohs ikuy.rM .N ot 1 morf derebmun era sdrac hcaE .elbat eht no sdrac N era erehT";
	reverse(s.begin(), s.end());
	cout << s << endl;
	string t = ".61 dna 1 neewteb sregtni era M ,N";
	reverse(t.begin(), t.end());
	cout << t << endl;*/

	ll N, M; cin >> N >> M;

	cout << pow(M, N) << endl;
	int a; cin >> a;

}
0