結果

問題 No.1047 Zero (Novice)
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-29 14:57:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 3,506 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 41,240 KB
最終ジャッジ日時 2024-05-06 23:12:01
合計ジャッジ時間 5,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,968 KB
testcase_01 AC 115 ms
40,992 KB
testcase_02 AC 111 ms
40,664 KB
testcase_03 AC 109 ms
40,712 KB
testcase_04 AC 115 ms
41,060 KB
testcase_05 AC 112 ms
40,788 KB
testcase_06 AC 119 ms
41,236 KB
testcase_07 AC 113 ms
40,736 KB
testcase_08 AC 98 ms
39,752 KB
testcase_09 AC 111 ms
40,960 KB
testcase_10 AC 115 ms
41,012 KB
testcase_11 AC 114 ms
40,988 KB
testcase_12 AC 98 ms
39,820 KB
testcase_13 AC 100 ms
39,784 KB
testcase_14 AC 112 ms
40,812 KB
testcase_15 AC 119 ms
40,960 KB
testcase_16 AC 106 ms
39,840 KB
testcase_17 AC 107 ms
41,240 KB
testcase_18 AC 108 ms
41,100 KB
testcase_19 AC 103 ms
39,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {
		public static void main (String[] args) {
			Scanner sc = new Scanner(System.in);
			int a = sc.nextInt();
			int b = sc.nextInt();
			sc.close();
			int temp = 0;

			if (a > 0 && b > 0) {
				System.out.println(-1);
			}else {
				for (int i = 0;i < 1000 ; i ++) {
					temp = a * temp + b;
					if (temp == 0) {
						System.out.println(i + 1);
						break;
					}
					if (i == 999) {System.out.println(-1);}
				}
			}


	}
}
0