結果

問題 No.1613 Rush and Remove
ユーザー yudedakoyudedako
提出日時 2022-03-01 16:06:04
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,091 ms / 2,000 ms
コード長 627 bytes
コンパイル時間 14,810 ms
コンパイル使用メモリ 263,072 KB
実行使用メモリ 63,436 KB
最終ジャッジ日時 2024-07-07 22:37:19
合計ジャッジ時間 56,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 960 ms
62,968 KB
testcase_01 AC 958 ms
63,188 KB
testcase_02 AC 973 ms
63,168 KB
testcase_03 AC 964 ms
63,168 KB
testcase_04 AC 980 ms
63,352 KB
testcase_05 AC 992 ms
63,364 KB
testcase_06 AC 971 ms
63,436 KB
testcase_07 AC 965 ms
63,336 KB
testcase_08 AC 969 ms
63,304 KB
testcase_09 AC 1,050 ms
63,236 KB
testcase_10 AC 1,047 ms
63,168 KB
testcase_11 AC 1,051 ms
63,356 KB
testcase_12 AC 1,045 ms
63,304 KB
testcase_13 AC 1,047 ms
63,408 KB
testcase_14 AC 1,055 ms
63,232 KB
testcase_15 AC 1,091 ms
63,220 KB
testcase_16 AC 1,044 ms
63,168 KB
testcase_17 AC 1,060 ms
63,116 KB
testcase_18 AC 965 ms
63,040 KB
testcase_19 AC 957 ms
63,088 KB
testcase_20 AC 961 ms
63,084 KB
testcase_21 AC 954 ms
62,992 KB
testcase_22 AC 959 ms
63,140 KB
testcase_23 AC 974 ms
63,052 KB
testcase_24 AC 968 ms
63,132 KB
testcase_25 AC 967 ms
63,100 KB
testcase_26 AC 961 ms
63,164 KB
testcase_27 AC 975 ms
63,340 KB
testcase_28 AC 978 ms
63,168 KB
testcase_29 AC 974 ms
63,216 KB
testcase_30 AC 961 ms
63,088 KB
testcase_31 AC 953 ms
63,140 KB
testcase_32 AC 958 ms
63,208 KB
testcase_33 AC 962 ms
63,072 KB
testcase_34 AC 959 ms
63,196 KB
testcase_35 AC 964 ms
63,220 KB
testcase_36 AC 979 ms
63,296 KB
testcase_37 AC 972 ms
63,284 KB
testcase_38 AC 964 ms
63,228 KB
testcase_39 AC 964 ms
63,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import scala.collection.mutable.*
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*
import scala.reflect.ClassTag
import scala.util.*
import scala.annotation.tailrec
import scala.collection.mutable


@main def main =
  val Array(height, width) = readLine.split(' ').map(_.toInt)
  val state = Array.fill(height){readLine}
  var result = 0
  for j <- 0 until width do
    var rest = 0
    for i <- height - 1 to 0 by -1 do
      rest = ((rest << 1) + (if state(i)(j) == 'o' then 1 else 0)) % 3
    result ^= rest
  println{
    if result == 0 then "Second"
    else "First"
  }
0