結果

問題 No.3090 NimNim
ユーザー pitP
提出日時 2025-04-04 22:59:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,284 KB
最終ジャッジ日時 2025-04-04 22:59:58
合計ジャッジ時間 4,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

xa, xb = 0, 0
for i in range(N):
    xa = xa ^ A[i]
for i in range(M):
    xb = xb ^ B[i]

if xa > xb:
    xa, xb = xb, xa

if xa == 0 and xb > 0:
    print("Second")
else:
    print("First")
0