結果
| 問題 |
No.1047 Zero (Novice)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-05-08 21:29:57 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 586 bytes |
| コンパイル時間 | 1,184 ms |
| コンパイル使用メモリ | 86,832 KB |
| 最終ジャッジ日時 | 2025-01-10 08:08:23 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <iostream>
#include <cmath>
#include <set>
using lint = long long;
constexpr lint INF = 1LL << 30;
void solve() {
lint a, b;
std::cin >> a >> b;
lint n = 0;
std::set<lint> vis;
for (int k = 0;; ++k) {
n = a * n + b;
if (vis.count(n) || std::abs(n) >= INF) break;
if (n == 0) {
std::cout << k + 1 << std::endl;
return;
}
vis.insert(n);
}
std::cout << -1 << std::endl;
}
int main() {
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
solve();
return 0;
}