結果
| 問題 | No.726 Tree Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-09-11 10:59:16 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| + 416µs | |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 66 ms |
| コンパイル使用メモリ | 81,024 KB |
| 実行使用メモリ | 81,152 KB |
| 最終ジャッジ日時 | 2026-07-18 18:29:30 |
| 合計ジャッジ時間 | 3,188 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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'