답안 #781627

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
781627 2023-07-13T08:49:34 Z devariaota 이상한 기계 (APIO19_strange_device) C++17
0 / 100
163 ms 524288 KB
#include <bits/stdc++.h>
#define ll long long
using namespace std;



int main(){
  ll n,a,b;cin>>n>>a>>b;
  bool vis[b+5][10000]={0};
  pair<long long,long long> arr[10000];
  for(ll i=1;i<=n;i++){
    cin>>arr[i].first>>arr[i].second;
  }
  ll ans=0;
  for(ll j=1;j<=n;j++){
    ll x,y;
    x=arr[j].first;
    y=arr[j].second;
    for(ll i=x;i<=y;i++){
      ll c=(i+i/b)%a;
      ll d=i%b;
      if(!vis[d][c]){
        ans++;
        vis[d][c]=true;
      }
    }
  }
  cout<<ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Runtime error 57 ms 60892 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Runtime error 158 ms 524288 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Incorrect 17 ms 1256 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Runtime error 11 ms 764 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Runtime error 11 ms 764 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Runtime error 11 ms 764 KB Execution killed with signal 11
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Runtime error 163 ms 524288 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 468 KB Output is correct
2 Runtime error 57 ms 60892 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -