BOJ/C++ 1 IamToday 2020. 2. 6. 23:09 #include #include #include using namespace std; typedef long long ll; int main() { ios_base::sync_with_stdio(false); cin.tie(0); int n; while (1) { cin >> n; if (cin.eof()) break; int res = 1; int cnt = 1; while (1) { if (res % n == 0) { break; } res = res * 10 + 1; res %= n; cnt++; } cout << cnt << '\n'; } return 0; } 공유하기 게시글 관리 나는 오늘, 'BOJ > C++' 카테고리의 다른 글 소수합 (0) 2020.02.07 암호제작 (0) 2020.02.07 보이는 점 (0) 2020.02.06 서로소 (0) 2020.02.06 내려가기 (0) 2020.02.05 'BOJ/C++' Related Articles 소수합 암호제작 보이는 점 서로소