結果

問題 No.1047 Zero (Novice)
ユーザー yumechiyumechi
提出日時 2021-03-01 01:54:38
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,019 ms / 2,000 ms
コード長 297 bytes
コンパイル時間 9,638 ms
コンパイル使用メモリ 261,896 KB
実行使用メモリ 63,756 KB
最終ジャッジ日時 2024-10-03 00:43:28
合計ジャッジ時間 29,878 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 960 ms
63,544 KB
testcase_01 AC 952 ms
63,412 KB
testcase_02 AC 964 ms
63,300 KB
testcase_03 AC 953 ms
63,756 KB
testcase_04 AC 955 ms
63,416 KB
testcase_05 AC 952 ms
63,516 KB
testcase_06 AC 965 ms
63,520 KB
testcase_07 AC 959 ms
63,544 KB
testcase_08 AC 1,017 ms
63,524 KB
testcase_09 AC 1,019 ms
63,648 KB
testcase_10 AC 958 ms
63,660 KB
testcase_11 AC 956 ms
63,296 KB
testcase_12 AC 959 ms
63,532 KB
testcase_13 AC 964 ms
63,480 KB
testcase_14 AC 962 ms
63,608 KB
testcase_15 AC 967 ms
63,456 KB
testcase_16 AC 964 ms
63,496 KB
testcase_17 AC 961 ms
63,620 KB
testcase_18 AC 960 ms
63,512 KB
testcase_19 AC 975 ms
63,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

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

  val a = sc.nextLong
  val b = sc.nextLong


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