結果
問題 | No.1287 えぬけー |
ユーザー | leaf_1415 |
提出日時 | 2020-11-13 22:21:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 424 ms / 2,000 ms |
コード長 | 1,076 bytes |
コンパイル時間 | 954 ms |
コンパイル使用メモリ | 79,752 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 21:11:44 |
合計ジャッジ時間 | 3,410 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 412 ms
6,944 KB |
testcase_06 | AC | 412 ms
6,940 KB |
testcase_07 | AC | 424 ms
6,940 KB |
testcase_08 | AC | 389 ms
6,940 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) #define all(x) (x).begin(),(x).end() #define inf 1e18 using namespace std; typedef long long llint; typedef pair<llint, llint> P; llint T, x, k; const llint mod = 1000000007; llint modpow(llint a, llint n, llint mod) { if(n == 0) return 1; if(n % 2){ return ((a%mod) * (modpow(a, n-1, mod)%mod)) % mod; } else{ return modpow((a*a)%mod, n/2, mod) % mod; } } int main(void) { ios::sync_with_stdio(0); cin.tie(0); llint phi = 500000002; cin >> T; while(T--){ cin >> x >> k; if(x <= 1){ cout << x << endl; continue; } k = modpow(k, phi-1, mod-1); cout << modpow(x, k, mod) << endl; } return 0; }