結果

問題 No.2044 Infinite Nim
ユーザー 箱星箱星
提出日時 2021-10-22 17:57:29
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 12,701 ms
コンパイル使用メモリ 430,396 KB
実行使用メモリ 69,448 KB
最終ジャッジ日時 2024-10-09 06:00:15
合計ジャッジ時間 28,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
54,288 KB
testcase_01 AC 281 ms
54,368 KB
testcase_02 AC 278 ms
54,264 KB
testcase_03 AC 281 ms
54,264 KB
testcase_04 AC 287 ms
54,360 KB
testcase_05 AC 281 ms
54,348 KB
testcase_06 AC 285 ms
54,308 KB
testcase_07 AC 281 ms
54,312 KB
testcase_08 AC 285 ms
54,352 KB
testcase_09 AC 281 ms
54,508 KB
testcase_10 AC 284 ms
54,264 KB
testcase_11 AC 286 ms
54,444 KB
testcase_12 AC 282 ms
54,396 KB
testcase_13 AC 408 ms
61,312 KB
testcase_14 AC 393 ms
59,248 KB
testcase_15 AC 395 ms
57,140 KB
testcase_16 AC 395 ms
59,224 KB
testcase_17 AC 415 ms
63,172 KB
testcase_18 AC 406 ms
57,144 KB
testcase_19 AC 404 ms
59,424 KB
testcase_20 AC 407 ms
61,060 KB
testcase_21 AC 425 ms
63,400 KB
testcase_22 AC 408 ms
61,204 KB
testcase_23 AC 408 ms
59,216 KB
testcase_24 AC 410 ms
61,200 KB
testcase_25 AC 402 ms
59,288 KB
testcase_26 AC 419 ms
63,344 KB
testcase_27 AC 398 ms
57,000 KB
testcase_28 AC 425 ms
63,488 KB
testcase_29 AC 405 ms
61,204 KB
testcase_30 AC 411 ms
61,180 KB
testcase_31 AC 420 ms
65,248 KB
testcase_32 AC 428 ms
65,332 KB
testcase_33 AC 424 ms
65,604 KB
testcase_34 AC 417 ms
61,316 KB
testcase_35 AC 439 ms
69,448 KB
testcase_36 AC 279 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextInt() }
    val inf = a.count { it == -1 }
    if (inf % 2 == 1) {
        println("First")
        return
    }
    var x = 0
    for (i in 0 until n) {
        if (a[i] != -1) {
            x = x xor a[i]
        }
    }
    println(if (x == 0) "Second" else "First")
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// 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