結果

問題 No.1047 Zero (Novice)
ユーザー joybeeeejoybeeee
提出日時 2020-05-12 16:09:45
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 538 bytes
コンパイル時間 3,701 ms
コンパイル使用メモリ 75,964 KB
実行使用メモリ 240,436 KB
最終ジャッジ日時 2024-09-13 14:13:48
合計ジャッジ時間 8,267 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
57,480 KB
testcase_01 AC 134 ms
41,328 KB
testcase_02 AC 134 ms
41,296 KB
testcase_03 AC 135 ms
41,472 KB
testcase_04 AC 133 ms
41,344 KB
testcase_05 AC 121 ms
40,192 KB
testcase_06 AC 135 ms
41,384 KB
testcase_07 AC 134 ms
41,656 KB
testcase_08 AC 134 ms
41,460 KB
testcase_09 AC 122 ms
40,024 KB
testcase_10 AC 133 ms
41,420 KB
testcase_11 AC 134 ms
41,172 KB
testcase_12 AC 132 ms
41,324 KB
testcase_13 AC 129 ms
41,336 KB
testcase_14 AC 133 ms
41,172 KB
testcase_15 AC 132 ms
41,168 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String args[]) throws Exception {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        if(a > 0 && b > 0 || a == 0 && b != 0) {
        	System.out.println(-1);
        	return;
        }
        int n = 0;
        Set<Integer> seen = new HashSet<>();
        while(!seen.contains(n)) {
        	seen.add(n);
        	n = a *  n + b;
        }

        System.out.println(n == 0 ? seen.size() : -1);	
    }
}
0