結果
問題 |
No.2044 Infinite Nim
|
ユーザー |
![]() |
提出日時 | 2022-08-19 21:53:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 62 ms / 2,000 ms |
コード長 | 436 bytes |
コンパイル時間 | 251 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 83,116 KB |
最終ジャッジ日時 | 2024-10-09 06:05:12 |
合計ジャッジ時間 | 3,134 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 34 |
ソースコード
mod = 998244353 def main(): import sys input = sys.stdin.readline N = int(input()) A = list(map(int, input().split())) x = 0 cnt_inf = 0 for a in A: if a == -1: cnt_inf += 1 else: x ^= a if cnt_inf & 1: print("First") else: if x: print("First") else: print("Second") if __name__ == '__main__': main()