結果
問題 | No.726 Tree Game |
ユーザー | mjkttenhoubot |
提出日時 | 2018-08-24 22:22:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 16,256 KB |
最終ジャッジ日時 | 2024-06-23 07:55:01 |
合計ジャッジ時間 | 4,861 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
16,256 KB |
testcase_01 | AC | 26 ms
10,752 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 28 ms
10,880 KB |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | AC | 26 ms
10,880 KB |
testcase_06 | AC | 25 ms
10,752 KB |
testcase_07 | AC | 25 ms
10,624 KB |
testcase_08 | AC | 25 ms
10,624 KB |
testcase_09 | AC | 24 ms
10,880 KB |
testcase_10 | AC | 26 ms
10,752 KB |
testcase_11 | AC | 25 ms
10,752 KB |
testcase_12 | AC | 26 ms
10,624 KB |
testcase_13 | AC | 26 ms
10,752 KB |
testcase_14 | AC | 25 ms
10,752 KB |
testcase_15 | AC | 25 ms
10,624 KB |
testcase_16 | AC | 27 ms
10,752 KB |
testcase_17 | AC | 166 ms
10,752 KB |
testcase_18 | AC | 25 ms
10,752 KB |
testcase_19 | AC | 267 ms
10,624 KB |
testcase_20 | AC | 164 ms
10,752 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
def isPrime(num): if num==1: return False if num==2: return True if num%2==0: return False for i in range(3,int(num**.5)+1,2): if num%i==0: return False return True def simulate(x,y,teban): go_x = isPrime(x+1) or isPrime(y) go_y = isPrime(x) or isPrime(y+1) if go_x+go_y == 2: return teban%2==1 elif go_x: return simulate(x,y+1,teban+1) elif go_y: return simulate(x+1,y,teban+1) else: if simulate(x+1,y,teban+1)==(teban%2==0): return teban%2==0 elif simulate(x,y+1,teban+1)==(teban%2==0): return teban%2==0 else: return teban%2==1 x,y = map(int,input().split()) if simulate(x,y,0): print('First') else: print('Second')