結果
問題 | No.726 Tree Game |
ユーザー |
![]() |
提出日時 | 2020-07-22 00:57:46 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 454 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 82,344 KB |
実行使用メモリ | 55,656 KB |
最終ジャッジ日時 | 2025-01-01 18:21:29 |
合計ジャッジ時間 | 2,329 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 WA * 2 |
ソースコード
import sys; input = sys.stdin.buffer.readlinesys.setrecursionlimit(10**7)from collections import defaultdictcon = 10 ** 9 + 7; INF = float("inf")def getlist():return list(map(int, input().split()))#処理内容def main():Y, X = getlist()ans = 0if Y % 2 == 0:ans ^= 1if X % 2 == 0:ans ^= 1if Y == 1:ans ^= 1if X == 1:ans ^= 1if ans == 0:print("Second")else:print("First")if __name__ == '__main__':main()