# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
19629 |
2016-02-25T02:41:37 Z |
sui |
Α (kriii4_P1) |
C++14 |
|
0 ms |
1720 KB |
#define _CRT_SECURE_NO_WARNINGS // scanf(), gets() (needed for Visual C++)
//#define NDEBUG
#include <cassert>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <functional>
#include <string>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <unordered_map>
#include <stack>
#include <deque>
using namespace std;
#define MEMSET(x, WITH) memset(x, (WITH), sizeof(x))
#define FOR(i, E) for(int i=0; i<(E); i++)
#define REP(i, LO, HI) for(int i=(LO); i<=(HI); i++)
#define GETINT(x) scanf("%d", &x)
#define GETDBL(x) scanf("%lf", &x)
#define GETSTR(x) scanf("%s", x)
#define NEWINT(x) int x; scanf("%d", &x)
#define NEWDBL(x) double x; scanf("%lf", &x)
#define NEWLN putchar('\n')
#ifdef _WIN32
#define popcnt __popcnt
#else
#define popcnt __builtin_popcount
#endif
typedef long long ll;
//const ll MOD = 1000000007;
//const double PI = atan(1) * 4;
const ll MOD = 1000000007;
int main() {
ll a, n; cin >> a >> n;
ll ans = 1;
for (int i=62; i>=0; i--) {
ans = ans * ans % MOD;
if ((n>>i)&1)
ans = ans * a % MOD;
}
puts("suck");
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
1720 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |