結果

問題 No.1183 コイン遊び
ユーザー yumechiyumechi
提出日時 2021-03-02 00:51:42
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 451 bytes
コンパイル時間 11,093 ms
コンパイル使用メモリ 272,564 KB
実行使用メモリ 87,536 KB
最終ジャッジ日時 2024-10-03 01:23:55
合計ジャッジ時間 82,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 911 ms
63,200 KB
testcase_01 AC 912 ms
63,436 KB
testcase_02 AC 930 ms
63,436 KB
testcase_03 AC 939 ms
63,256 KB
testcase_04 AC 929 ms
63,592 KB
testcase_05 AC 924 ms
63,500 KB
testcase_06 AC 912 ms
63,292 KB
testcase_07 AC 952 ms
63,460 KB
testcase_08 AC 1,036 ms
64,156 KB
testcase_09 AC 1,045 ms
64,000 KB
testcase_10 AC 1,231 ms
72,564 KB
testcase_11 AC 1,408 ms
76,516 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
import scala.collection.mutable.ArrayBuffer

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

  val n = sc.nextInt
  val al = ArrayBuffer.fill(n)(sc.nextInt)
  val bl = ArrayBuffer.fill(n)(sc.nextInt)
  var ans = 0
  var f = al(0) != bl(0)
  for(i <- 0 until n) {
    val c = al(i) != bl(i)
    if(c) {
      if(f) {
        ans += 1
        f = false
      }
    } else {
      f = true
    }
  }
  println(ans)
}
0