結果

問題 No.726 Tree Game
コンテスト
ユーザー rookzeno
提出日時 2018-08-25 00:47:06
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
WA  
実行時間 -
コード長 415 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 291 ms
コンパイル使用メモリ 21,412 KB
実行使用メモリ 15,868 KB
最終ジャッジ日時 2026-07-28 03:18:00
合計ジャッジ時間 4,172 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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
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