結果

問題 No.1613 Rush and Remove
ユーザー tamatotamato
提出日時 2021-07-22 00:02:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 62,304 KB
最終ジャッジ日時 2024-07-17 20:50:30
合計ジャッジ時間 2,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,072 KB
testcase_01 AC 36 ms
52,564 KB
testcase_02 AC 34 ms
53,124 KB
testcase_03 AC 33 ms
52,320 KB
testcase_04 AC 33 ms
52,652 KB
testcase_05 AC 32 ms
53,064 KB
testcase_06 AC 33 ms
52,644 KB
testcase_07 AC 33 ms
53,292 KB
testcase_08 AC 33 ms
54,096 KB
testcase_09 AC 46 ms
61,188 KB
testcase_10 AC 46 ms
61,056 KB
testcase_11 AC 46 ms
61,640 KB
testcase_12 AC 48 ms
62,304 KB
testcase_13 AC 45 ms
61,084 KB
testcase_14 AC 46 ms
60,888 KB
testcase_15 AC 46 ms
62,108 KB
testcase_16 AC 46 ms
61,340 KB
testcase_17 AC 45 ms
61,320 KB
testcase_18 AC 37 ms
59,436 KB
testcase_19 AC 38 ms
59,072 KB
testcase_20 AC 40 ms
61,188 KB
testcase_21 AC 37 ms
58,992 KB
testcase_22 AC 37 ms
59,252 KB
testcase_23 AC 38 ms
60,248 KB
testcase_24 AC 37 ms
58,756 KB
testcase_25 AC 38 ms
60,556 KB
testcase_26 AC 39 ms
60,424 KB
testcase_27 AC 33 ms
53,092 KB
testcase_28 AC 34 ms
53,732 KB
testcase_29 AC 33 ms
53,204 KB
testcase_30 AC 35 ms
53,056 KB
testcase_31 AC 33 ms
52,588 KB
testcase_32 AC 33 ms
53,020 KB
testcase_33 AC 33 ms
53,808 KB
testcase_34 AC 33 ms
52,652 KB
testcase_35 AC 32 ms
53,444 KB
testcase_36 AC 34 ms
53,596 KB
testcase_37 AC 34 ms
53,400 KB
testcase_38 AC 35 ms
52,696 KB
testcase_39 AC 34 ms
53,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    H, W = map(int, input().split())
    grid = []
    for _ in range(H):
        grid.append(input().rstrip('\n'))

    G = 0
    for w in range(W):
        g = 0
        for h in range(H):
            if grid[h][w] == "o":
                g += pow(2, h, 3)
                g %= 3
        G ^= g
    if G:
        print("First")
    else:
        print("Second")


if __name__ == '__main__':
    main()
0