結果

問題 No.2071 Shift and OR
ユーザー 箱星箱星
提出日時 2022-09-16 21:35:26
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,283 bytes
コンパイル時間 16,858 ms
コンパイル使用メモリ 437,904 KB
実行使用メモリ 102,836 KB
最終ジャッジ日時 2024-12-21 18:35:08
合計ジャッジ時間 37,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
62,176 KB
testcase_01 AC 321 ms
62,628 KB
testcase_02 AC 438 ms
71,308 KB
testcase_03 AC 509 ms
94,516 KB
testcase_04 AC 493 ms
84,956 KB
testcase_05 AC 763 ms
102,444 KB
testcase_06 AC 452 ms
94,416 KB
testcase_07 WA -
testcase_08 AC 488 ms
78,996 KB
testcase_09 AC 508 ms
89,244 KB
testcase_10 AC 536 ms
97,960 KB
testcase_11 AC 817 ms
102,336 KB
testcase_12 AC 837 ms
102,396 KB
testcase_13 AC 690 ms
101,564 KB
testcase_14 AC 311 ms
62,228 KB
testcase_15 AC 604 ms
101,648 KB
testcase_16 AC 619 ms
101,800 KB
testcase_17 AC 721 ms
102,480 KB
testcase_18 AC 319 ms
62,512 KB
testcase_19 AC 823 ms
102,836 KB
testcase_20 AC 873 ms
101,972 KB
testcase_21 AC 970 ms
102,784 KB
testcase_22 AC 852 ms
102,692 KB
testcase_23 AC 652 ms
92,632 KB
testcase_24 AC 593 ms
85,952 KB
testcase_25 AC 596 ms
92,536 KB
testcase_26 AC 585 ms
86,412 KB
testcase_27 AC 505 ms
92,692 KB
testcase_28 AC 691 ms
92,948 KB
testcase_29 AC 676 ms
92,964 KB
testcase_30 AC 561 ms
96,028 KB
testcase_31 AC 460 ms
83,036 KB
testcase_32 AC 499 ms
85,284 KB
testcase_33 AC 530 ms
96,376 KB
testcase_34 AC 502 ms
95,312 KB
testcase_35 AC 549 ms
95,904 KB
testcase_36 AC 588 ms
95,896 KB
testcase_37 AC 551 ms
96,400 KB
testcase_38 AC 538 ms
96,376 KB
testcase_39 AC 489 ms
90,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextInt() }
    val m = minOf(n, 16)
    val b = a.take(m)
    val set = mutableSetOf(0)
    fun shift(x: Int) = x / 2 + 32768 * (x % 2)
    for (entry in b) {
        var v = entry
        val setAdd = mutableSetOf<Int>()
        for (i in 0 until 15) {
            v = shift(v)
            for (w in set) {
                setAdd.add(v or w)
            }
        }
        for (add in setAdd) {
            set.add(add)
        }
    }
    println(set.maxOrNull())
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0