HDU 5158Have meal

1164 단어 수학.
이 문제 는 간단한 수학 문제 로 다른 할 말 이 없으니, 아래 에 AC 코드 를 동봉합니다
      #include<cstdio>
#include<cstring>
#include<algorithm>
#include <iostream>
using namespace std;

int main()  
{  
    int n, m;  
    while (cin>>n>>m)  
    {  
        int x;  
        x=m%n;  
        if (x==0)cout<<n-1<<endl;  
        else cout<<x-1<<endl;  
    }
    return 0;  
}  

좋은 웹페이지 즐겨찾기