結果
問題 |
No.726 Tree Game
|
ユーザー |
|
提出日時 | 2018-08-25 00:47:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 415 bytes |
コンパイル時間 | 351 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-23 16:51:57 |
合計ジャッジ時間 | 2,093 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 WA * 2 |
ソースコード
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")