結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ともきともき
提出日時 2015-06-16 00:42:56
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 1,391 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 14,856 ms
コンパイル使用メモリ 256,924 KB
実行使用メモリ 63,908 KB
最終ジャッジ日時 2024-12-16 01:47:11
合計ジャッジ時間 39,216 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 983 ms
63,672 KB
testcase_01 AC 1,002 ms
63,640 KB
testcase_02 AC 989 ms
63,696 KB
testcase_03 AC 985 ms
63,820 KB
testcase_04 AC 986 ms
63,616 KB
testcase_05 AC 988 ms
63,440 KB
testcase_06 AC 992 ms
63,456 KB
testcase_07 AC 1,318 ms
63,728 KB
testcase_08 AC 1,336 ms
63,604 KB
testcase_09 AC 1,251 ms
63,908 KB
testcase_10 AC 1,294 ms
63,836 KB
testcase_11 AC 1,361 ms
63,864 KB
testcase_12 AC 1,017 ms
63,556 KB
testcase_13 AC 985 ms
63,560 KB
testcase_14 AC 1,010 ms
63,812 KB
testcase_15 AC 1,391 ms
63,796 KB
testcase_16 AC 1,033 ms
63,724 KB
testcase_17 AC 1,114 ms
63,748 KB
testcase_18 AC 1,325 ms
63,888 KB
testcase_19 AC 1,039 ms
63,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine

object Main{
  def ipow(x : Integer,n : Integer) : Integer=
    if(x == n)
      1
    else if(n % 2 == 0)
      ipow(x*x,n/2)
    else
      x * ipow(x*x,n/2)

  def main(args: Array[String]) = {
    val n = readLine().toInt
    val a = readLine().split(" ").map(_.toInt).sorted.distinct
    val dp = Array.fill(ipow(2,15))(false)
    dp(0) = true
    for(ia <- a){
      for(i <- 0 until dp.length){
        dp(i ^ ia) = dp(i ^ ia) || dp(i)
      }
    }
    println(dp.count(_ == true))
  }
}
0