結果

問題 No.1183 コイン遊び
ユーザー yumechiyumechi
提出日時 2021-03-02 00:56:21
言語 Scala(Beta)
(3.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 477 bytes
コンパイル時間 10,595 ms
コンパイル使用メモリ 268,888 KB
実行使用メモリ 93,028 KB
最終ジャッジ日時 2024-10-03 01:25:15
合計ジャッジ時間 37,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 933 ms
68,780 KB
testcase_01 AC 941 ms
63,660 KB
testcase_02 AC 926 ms
63,712 KB
testcase_03 AC 926 ms
63,452 KB
testcase_04 AC 932 ms
63,808 KB
testcase_05 AC 944 ms
63,632 KB
testcase_06 AC 940 ms
63,720 KB
testcase_07 AC 938 ms
63,636 KB
testcase_08 AC 1,048 ms
64,260 KB
testcase_09 AC 1,046 ms
64,284 KB
testcase_10 AC 1,465 ms
76,456 KB
testcase_11 AC 1,794 ms
77,276 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 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

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 cnt = 0
  var f = al(0) != bl(0)
  while(cnt < n) {
    val c = al(cnt) != bl(cnt)
    if(c) {
      if(f) {
        ans += 1
        f = false
      }
    } else {
      f = true
    }
    cnt += 1
  }
  println(ans)
}
0