結果

問題 No.1456 Range Xor
ユーザー fukafukatanifukafukatani
提出日時 2021-06-23 21:23:27
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,628 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 10,782 ms
コンパイル使用メモリ 268,380 KB
実行使用メモリ 79,900 KB
最終ジャッジ日時 2024-09-22 23:15:42
合計ジャッジ時間 80,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 947 ms
66,032 KB
testcase_01 AC 953 ms
65,988 KB
testcase_02 AC 959 ms
65,884 KB
testcase_03 AC 1,570 ms
79,900 KB
testcase_04 AC 1,573 ms
79,268 KB
testcase_05 AC 1,628 ms
79,288 KB
testcase_06 AC 1,561 ms
79,388 KB
testcase_07 AC 1,549 ms
79,300 KB
testcase_08 AC 1,595 ms
79,516 KB
testcase_09 AC 1,574 ms
79,096 KB
testcase_10 AC 1,574 ms
78,852 KB
testcase_11 AC 1,304 ms
74,004 KB
testcase_12 AC 1,273 ms
74,448 KB
testcase_13 AC 1,428 ms
69,864 KB
testcase_14 AC 1,378 ms
74,944 KB
testcase_15 AC 1,531 ms
79,168 KB
testcase_16 AC 1,483 ms
79,316 KB
testcase_17 AC 1,415 ms
74,764 KB
testcase_18 AC 1,359 ms
70,920 KB
testcase_19 AC 1,499 ms
76,564 KB
testcase_20 AC 1,540 ms
78,244 KB
testcase_21 AC 1,471 ms
75,580 KB
testcase_22 AC 1,467 ms
77,128 KB
testcase_23 AC 1,381 ms
70,516 KB
testcase_24 AC 1,304 ms
73,916 KB
testcase_25 AC 1,373 ms
75,424 KB
testcase_26 AC 1,437 ms
77,088 KB
testcase_27 AC 1,518 ms
75,828 KB
testcase_28 AC 1,344 ms
74,200 KB
testcase_29 AC 1,570 ms
79,476 KB
testcase_30 AC 1,553 ms
77,472 KB
testcase_31 AC 1,339 ms
74,024 KB
testcase_32 AC 1,348 ms
67,984 KB
testcase_33 AC 1,428 ms
72,588 KB
testcase_34 AC 1,568 ms
77,352 KB
testcase_35 AC 1,473 ms
71,884 KB
testcase_36 AC 1,559 ms
77,480 KB
testcase_37 AC 1,568 ms
79,456 KB
testcase_38 AC 1,309 ms
71,620 KB
testcase_39 AC 1,495 ms
76,428 KB
testcase_40 AC 1,542 ms
79,708 KB
testcase_41 AC 1,118 ms
66,388 KB
testcase_42 AC 1,260 ms
66,600 KB
testcase_43 AC 955 ms
66,004 KB
testcase_44 AC 957 ms
65,952 KB
testcase_45 AC 963 ms
66,028 KB
testcase_46 AC 966 ms
65,904 KB
testcase_47 AC 958 ms
65,992 KB
testcase_48 AC 962 ms
65,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)
  val n, k = sc.nextLong
  val a = Array.fill(n.toInt )(sc.nextInt)
  var cur = 0;
  var found = collection.mutable.HashSet(0l)
  for (i <- 0 until n.toInt) {
    cur = cur ^ a(i)
    found += cur
  }
  found.find(elem => found.contains(elem ^ k)) match {
    case Some(x) => println("Yes")
    case _ => println("No")
  }
}
0