結果
問題 | No.726 Tree Game |
ユーザー | persimmon-persimmon |
提出日時 | 2021-06-23 15:25:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 442 ms |
コンパイル使用メモリ | 82,112 KB |
実行使用メモリ | 246,488 KB |
最終ジャッジ日時 | 2024-06-24 12:11:39 |
合計ジャッジ時間 | 9,132 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,904 KB |
testcase_01 | AC | 37 ms
53,536 KB |
testcase_02 | AC | 38 ms
52,916 KB |
testcase_03 | AC | 47 ms
53,224 KB |
testcase_04 | AC | 47 ms
52,528 KB |
testcase_05 | AC | 47 ms
52,384 KB |
testcase_06 | AC | 47 ms
54,132 KB |
testcase_07 | AC | 46 ms
52,448 KB |
testcase_08 | AC | 45 ms
52,816 KB |
testcase_09 | AC | 46 ms
53,200 KB |
testcase_10 | AC | 46 ms
54,208 KB |
testcase_11 | AC | 44 ms
53,932 KB |
testcase_12 | WA | - |
testcase_13 | AC | 40 ms
53,308 KB |
testcase_14 | AC | 40 ms
52,544 KB |
testcase_15 | AC | 39 ms
53,380 KB |
testcase_16 | AC | 860 ms
246,004 KB |
testcase_17 | AC | 832 ms
246,488 KB |
testcase_18 | AC | 437 ms
229,328 KB |
testcase_19 | AC | 822 ms
246,088 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 846 ms
246,028 KB |
testcase_23 | AC | 812 ms
245,400 KB |
testcase_24 | AC | 787 ms
245,564 KB |
ソースコード
# n以上の素数で最小のものを返す def eratosthenes0(n): nu=n+min(n,10**6) kouho=set(range(n,nu)) for x in range(2,int(nu**.5)+1): xx=x*(n//x) while xx<nu: kouho.discard(xx) xx+=x return min(kouho) def main(x0,y0): if x0>y0:x0,y0=y0,x0 x1=eratosthenes0(x0) y1=eratosthenes0(y0) if x0==1 and y0==1: return False elif x0==1 or y0==1: # x0が1 y1=eratosthenes0(y0+1) # y0より真に大きい素数 if (y1-y0)%2==0: return True else: return False elif x0==2 or y0==2: # (2,8)->(2,9) ng # (2,8)->(3,8) ng return False elif x0==x1 and y0==y1: return False elif x0==x1 or y0==y1: # 素数の座標を動かす if x0==x1: return not main(x0+1,y0) else: return not main(x0,y0+1) else: if (x1-x0)+(y1-y0) % 2 == 0: return True else: return False if __name__=='__main__': x,y=map(int,input().split()) ret=main(x,y) if ret: print("First") else: print("Second")