天梯赛 整除光棍
https://pintia.cn/problem-sets/994805046380707840/problems/994805084284633088
模拟除法竖式的过程
一次落下一个1
一个不会小学除法的大学生
#include<cstdio> int main() { int x; scanf("%d",&x); int y=0,s=0; bool st=false; while(1) { y=y*10+1; ++s; if(y>=x) { st=true; printf("%d",y/x); y=y%x; if(!y) break; } else if(st) printf("0"); } printf(" %d",s); }