結果

問題 No.726 Tree Game
ユーザー rookzeno
提出日時 2018-08-25 00:49:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-23 16:52:18
合計ジャッジ時間 1,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
x, y = map(int, input().split())
def so(k):
    n = True
    if k % 2 == 0 and k != 2:
      return False
    for divisor in range(2, math.floor(math.sqrt(k))+1):
      if k % divisor == 0:
        n = False
    return n
i= 0
j=0
if (x==2 or y ==2):
  print("Second")
  exit()
while True:
  x += 1
  if so(x) == True:
    break
  i+=1
while True:
  y += 1
  if so(y) == True:
    break
  j+=1
if (i+j)%2 == 1:
  print("First")
else:
  print("Second")
0