結果
問題 | No.1047 Zero (Novice) |
ユーザー | joybeeee |
提出日時 | 2020-05-12 15:55:50 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 430 bytes |
コンパイル時間 | 2,253 ms |
コンパイル使用メモリ | 75,152 KB |
実行使用メモリ | 234,276 KB |
最終ジャッジ日時 | 2024-09-13 14:00:53 |
合計ジャッジ時間 | 7,027 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
61,096 KB |
testcase_01 | AC | 136 ms
53,888 KB |
testcase_02 | AC | 135 ms
54,144 KB |
testcase_03 | AC | 134 ms
54,100 KB |
testcase_04 | AC | 134 ms
54,016 KB |
testcase_05 | AC | 133 ms
53,940 KB |
testcase_06 | AC | 136 ms
53,904 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
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(); 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); } }