結果
問題 | 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 = 998244353def main():import sysinput = sys.stdin.readlineN = int(input())A = list(map(int, input().split()))x = 0cnt_inf = 0for a in A:if a == -1:cnt_inf += 1else:x ^= aif cnt_inf & 1:print("First")else:if x:print("First")else:print("Second")if __name__ == '__main__':main()