# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
475412 | Ahmed_Solyman | Automobil (COCI17_automobil) | C++14 | 39 ms | 65540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mod=1000000007;
int main()
{
ll n,m,k;cin>>n>>m>>k;
vector<vector<ll>>arr(n,vector<ll>(m));
ll u=1;
for(ll i=0;i<n;i++){
for(ll j=0;j<m;j++){
arr[i][j]=(u++);
}
}
while(k--){
char c;
ll x,y;cin>>c>>x>>y;
if(c=='R'){
for(ll i=0;i<m;i++){
arr[x-1][i]*=y;
arr[x-1][i]%=mod;
}
}
else{
for(ll i=0;i<n;i++){
arr[i][x-1]*=y;
arr[i][x-1]%=mod;
}
}
}
ll ans=0;
for(auto i:arr){
for(auto j:i){
ans+=j;
}
}
cout<<ans<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |