当前位置: 代码迷 >> 综合 >> hdu 1098
  详细解决方案

hdu 1098

热度:64   发布时间:2023-11-22 02:43:11.0

题目;http://acm.hdu.edu.cn/showproblem.php?pid=1098

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n;while(scanf("%d\n,&n")!=EOF){
    n%=65;for(int i=0;i<=64;i++){
    if((18+n*i)%65==0){
    printf("%d\n",i);break;}if(i==64)printf("no\n");	} }return 0;		
}