結果

問題 No.1047 Zero (Novice)
ユーザー yumechiyumechi
提出日時 2021-03-01 01:53:05
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 8,845 ms
コンパイル使用メモリ 264,664 KB
実行使用メモリ 65,352 KB
最終ジャッジ日時 2024-10-03 00:42:57
合計ジャッジ時間 29,804 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 962 ms
63,756 KB
testcase_01 AC 972 ms
63,420 KB
testcase_02 AC 977 ms
63,412 KB
testcase_03 AC 960 ms
63,612 KB
testcase_04 AC 948 ms
63,420 KB
testcase_05 AC 963 ms
63,488 KB
testcase_06 AC 960 ms
63,564 KB
testcase_07 AC 955 ms
63,656 KB
testcase_08 AC 954 ms
63,612 KB
testcase_09 AC 956 ms
63,484 KB
testcase_10 AC 951 ms
63,544 KB
testcase_11 AC 968 ms
63,416 KB
testcase_12 AC 971 ms
63,524 KB
testcase_13 AC 962 ms
63,656 KB
testcase_14 AC 957 ms
63,428 KB
testcase_15 AC 970 ms
63,356 KB
testcase_16 AC 976 ms
63,516 KB
testcase_17 AC 958 ms
63,568 KB
testcase_18 AC 951 ms
63,632 KB
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val a = sc.nextInt
  val b = sc.nextInt


  def solve(a: Int, b: Int): Int = {
    var n = 0
    for(i <- 1 to 3) {
      n = a * n + b
      if(n == 0) return i
    }
    -1
  }
  println(solve(a, b))
}
0