結果
| 問題 | No.1800 Random XOR |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-04-04 01:10:57 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 466 bytes |
| 記録 | |
| コンパイル時間 | 3,570 ms |
| コンパイル使用メモリ | 274,468 KB |
| 実行使用メモリ | 7,324 KB |
| 最終ジャッジ日時 | 2025-04-04 01:11:02 |
| 合計ジャッジ時間 | 4,371 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 14 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "settings/debug.cpp"
#else
#define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
#include <atcoder/modint>
using mint = atcoder::modint1000000007;
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
ll n, m;
cin >> n >> m;
cout << (mint(2).inv() * (mint(2).pow(m) - 1)).val() << '\n';
return 0;
}
a01sa01to