Submission #1101248

# Submission time Handle Problem Language Result Execution time Memory
1101248 2024-10-15T22:24:46 Z fve5 Star Trek (CEOI20_startrek) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;

constexpr int MOD = 1e9 + 7;

int main() {
  int N; cin >> n;
  long long D; cin >> D;
  
  long long b = 2;
  long long a = 1;
  do {
    if (D & 1) a = a * b % MOD;
    b = b * b % MOD;
  } while (D >>= 1);
  
  cout << a << '\n';
}

Compilation message

startrek.cpp: In function 'int main()':
startrek.cpp:7:17: error: 'n' was not declared in this scope
    7 |   int N; cin >> n;
      |                 ^
startrek.cpp:7:7: warning: unused variable 'N' [-Wunused-variable]
    7 |   int N; cin >> n;
      |       ^