#include <stdio.h>
#define MOD 1000007
int main ( void ) {
int t;
scanf("%d" , &t);
while ( t-- ) {
long long int n;
scanf("%lld" , &n);
long long int ans = ((n*(3*n+1))/2);
ans %= MOD;
printf("%lld\n" , ans);
}
return 0;
}
Arpit's Newsletter read by 15000+ engineers
🔥 Thrice a week, in your inbox, an essay about system design, distributed systems, microservices, programming languages internals, or a deep dive on some super-clever algorithm, or just a few tips on building highly scalable distributed systems.