結果
問題 | No.1287 えぬけー |
ユーザー | lorent_kyopro |
提出日時 | 2020-11-14 00:16:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 71 ms / 2,000 ms |
コード長 | 642 bytes |
コンパイル時間 | 2,162 ms |
コンパイル使用メモリ | 203,968 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 22:26:05 |
合計ジャッジ時間 | 3,233 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 70 ms
5,376 KB |
testcase_06 | AC | 70 ms
5,376 KB |
testcase_07 | AC | 71 ms
5,376 KB |
testcase_08 | AC | 67 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using namespace atcoder; using mint = modint1000000007; __attribute__((constructor)) void fast_io() { ios::sync_with_stdio(false); cin.tie(nullptr); } void extgcd(int a, int b, int& x, int& y) { if (b == 0) { x = 1, y = 0; return; } extgcd(b, a % b, y, x); y -= a / b * x; } constexpr int mod = 1000000007; void solve() { int x, k; cin >> x >> k; int a, b; extgcd(k, mod - 1, a, b); a += mod - 1; cout << mint(x).pow(a).val() << '\n'; } int main() { int t; cin >> t; while (t--) solve(); }