結果
問題 |
No.726 Tree Game
|
ユーザー |
|
提出日時 | 2018-09-11 10:59:16 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 155 bytes |
コンパイル時間 | 537 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 04:07:08 |
合計ジャッジ時間 | 1,316 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#yuki726 y,x=map(int,raw_input().split()) res=(y%2)^(x%2) if y==1: res^=1 if x==1: res^=1 if y==2 or x==2: res=0 print 'Second' if res==0 else 'First'