結果
問題 | No.2282 Boxed Nim |
ユーザー | 森中康介 |
提出日時 | 2023-04-28 22:19:49 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 57 ms / 2,000 ms |
コード長 | 171 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 82,764 KB |
実行使用メモリ | 79,144 KB |
最終ジャッジ日時 | 2024-11-17 21:15:49 |
合計ジャッジ時間 | 1,918 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
N = int(input()) sum = N for i in input().split(): i = int(i) if i != 0: sum += 1 sum = sum % 2 if sum == 0: print('Second') else: print('First')